we should run this on main and also test open models at least via ope… (#5556)

adds qwen3-code and GLM 4.6 to test_providers for open model coverage
This commit is contained in:
Michael Neale
2025-11-04 09:06:23 +11:00
committed by GitHub
parent 2c1e52c3c2
commit 7511a533d6
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -2,6 +2,9 @@ on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
inputs:
branch:
@@ -16,7 +19,7 @@ jobs:
check-fork:
runs-on: ubuntu-latest
# Skip entire workflow for PRs from forks (they don't have access to secrets)
if: github.event_name == 'workflow_dispatch' || github.event.pull_request.head.repo.full_name == github.repository
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository
steps:
- run: echo "Not a fork PR - proceeding with smoke tests"