From 822f7d568f4b2c3b1d2c81bbc305a40dc85fcf59 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 19 Feb 2026 00:34:50 +0000 Subject: [PATCH] ci: fix missing env vars for test-model-alias-routing job The job was only passing 3 of the 7 required API keys. Added the missing MISTRAL_API_KEY, GROQ_API_KEY, AZURE_API_KEY, and AWS_BEARER_TOKEN_BEDROCK to match the main branch configuration. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d61d69c..1c058957 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -305,7 +305,11 @@ jobs: - name: Run model alias routing tests env: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} + MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }} + GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }} ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} + AZURE_API_KEY: ${{ secrets.AZURE_API_KEY }} + AWS_BEARER_TOKEN_BEDROCK: ${{ secrets.AWS_BEARER_TOKEN_BEDROCK }} GROK_API_KEY: ${{ secrets.GROK_API_KEY }} run: | cd tests/e2e && bash run_model_alias_tests.sh