Skip to content

Commit 3f81f99

Browse files
committed
ci: wire AnthropicVerification harness into smoke-tests-live job
Adds a 'Run AnthropicVerification harness' step before the tests/Smoke check. The harness (tests/AnthropicVerification/) runs dotnet run against the live Anthropic API, verifying all three model IDs cited in the manuscript. Skipped automatically when ANTHROPIC_API_KEY is not set.
1 parent 98d4a21 commit 3f81f99

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,14 @@ jobs:
116116
- uses: actions/setup-dotnet@v4
117117
with:
118118
dotnet-version: "9.0.x"
119+
- name: Run AnthropicVerification harness
120+
if: ${{ env.ANTHROPIC_API_KEY != '' }}
121+
shell: bash
122+
run: |
123+
echo "::group::AnthropicVerification (live API)"
124+
dotnet run --project tests/AnthropicVerification
125+
echo "::endgroup::"
126+
119127
- name: Run smoke tests (if present)
120128
shell: bash
121129
run: |

0 commit comments

Comments
 (0)