From b8d1726d7b34028d400bfa57fdae4e0f643d7f70 Mon Sep 17 00:00:00 2001 From: Olivier Debeuf De Rijcker Date: Sun, 4 Jan 2026 11:54:42 +0100 Subject: [PATCH] fix: add beads (bd) install to integration.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The integration.yml workflow was missing the beads CLI installation that the main ci.yml has. This caused integration tests to fail with "beads dependency check failed". 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/integration.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 5c6de02b..003ba837 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -29,6 +29,12 @@ jobs: 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/...