fix: scope integration.yml to ./internal/cmd/... only

The integration.yml was running ./... which includes beads tests that
require database initialization. Changed to match ci.yml's scope of
./internal/cmd/... which contains the actual integration tests.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Olivier Debeuf De Rijcker
2026-01-04 12:02:44 +01:00
parent b8d1726d7b
commit 266259c92d

View File

@@ -42,4 +42,4 @@ jobs:
run: go build -v ./cmd/gt
- name: Run integration tests
run: go test -v -tags=integration -timeout=4m ./...
run: go test -v -tags=integration -timeout=4m ./internal/cmd/...