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>
46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
name: Integration Tests
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'internal/cmd/install.go'
|
|
- 'internal/cmd/rig.go'
|
|
- 'internal/config/**'
|
|
- 'internal/routing/**'
|
|
- 'internal/cmd/*_integration_test.go'
|
|
- '.github/workflows/integration.yml'
|
|
|
|
jobs:
|
|
integration:
|
|
name: Integration Tests
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.24'
|
|
cache: true
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config --global user.name "CI Bot"
|
|
git config --global user.email "ci@gastown.test"
|
|
|
|
- name: Install beads (bd)
|
|
run: go install github.com/steveyegge/beads/cmd/bd@latest
|
|
|
|
- name: Add to PATH
|
|
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
|
|
|
- name: Generate embedded files
|
|
run: go generate ./internal/formula/...
|
|
|
|
- name: Build
|
|
run: go build -v ./cmd/gt
|
|
|
|
- name: Run integration tests
|
|
run: go test -v -tags=integration -timeout=4m ./internal/cmd/...
|