From 4d9ac6c1e49bbcab542ba9499157a608c46f477b Mon Sep 17 00:00:00 2001 From: Michael Iams Date: Wed, 15 Oct 2025 07:40:01 +0200 Subject: [PATCH] feat: add ANTHROPIC_API_KEY to GitHub Actions for LLM testing Allows testing of LLM-powered commands (ask, bio with AI) in CI. The API key secret needs to be added to GitHub repository settings: Settings > Secrets and variables > Actions > New repository secret Name: ANTHROPIC_API_KEY Value: sk-ant-...your-key... --- .github/workflows/pr-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 4e72e62..0f1d7c4 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -36,6 +36,7 @@ jobs: # Set test environment variables RM_DATABASE_PATH: data/Iiams.rmtree DEFAULT_LLM_PROVIDER: anthropic + ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} LOG_LEVEL: WARNING - name: Upload coverage reports