Nightly LLM Provider Chat Tests #167
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Nightly LLM Provider Chat Tests | |
| concurrency: | |
| group: Nightly-LLM-Provider-Chat-${{ github.workflow }}-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| on: | |
| schedule: | |
| # Runs daily at 10:30 UTC (2:30 AM PST / 3:30 AM PDT) | |
| - cron: "30 10 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| provider-chat-test: | |
| uses: ./.github/workflows/reusable-nightly-llm-provider-chat.yml | |
| with: | |
| openai_models: ${{ vars.NIGHTLY_LLM_OPENAI_MODELS }} | |
| anthropic_models: ${{ vars.NIGHTLY_LLM_ANTHROPIC_MODELS }} | |
| bedrock_models: ${{ vars.NIGHTLY_LLM_BEDROCK_MODELS }} | |
| vertex_ai_models: ${{ vars.NIGHTLY_LLM_VERTEX_AI_MODELS }} | |
| azure_models: ${{ vars.NIGHTLY_LLM_AZURE_MODELS }} | |
| azure_api_base: ${{ vars.NIGHTLY_LLM_AZURE_API_BASE }} | |
| ollama_models: ${{ vars.NIGHTLY_LLM_OLLAMA_MODELS }} | |
| openrouter_models: ${{ vars.NIGHTLY_LLM_OPENROUTER_MODELS }} | |
| strict: true | |
| secrets: | |
| openai_api_key: ${{ secrets.OPENAI_API_KEY }} | |
| anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | |
| bedrock_api_key: ${{ secrets.BEDROCK_API_KEY }} | |
| vertex_ai_custom_config_json: ${{ secrets.NIGHTLY_LLM_VERTEX_AI_CUSTOM_CONFIG_JSON }} | |
| azure_api_key: ${{ secrets.AZURE_API_KEY }} | |
| ollama_api_key: ${{ secrets.OLLAMA_API_KEY }} | |
| openrouter_api_key: ${{ secrets.OPENROUTER_API_KEY }} | |
| DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
| DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
| notify-slack-on-failure: | |
| needs: [provider-chat-test] | |
| if: failure() && github.event_name == 'schedule' | |
| runs-on: ubuntu-slim | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # ratchet:actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Send Slack notification | |
| uses: ./.github/actions/slack-notify | |
| with: | |
| webhook-url: ${{ secrets.SLACK_WEBHOOK }} | |
| failed-jobs: provider-chat-test | |
| title: "🚨 Scheduled LLM Provider Chat Tests failed!" | |
| ref-name: ${{ github.ref_name }} |