Merge pull request #408 from symflower/openai-reasoning_effort #799
This file contains 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: CI | |
on: ['push', 'release'] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
container-build: | |
name: 'Build container images' | |
uses: ./.github/workflows/job-container-image-build.yml | |
container-cleanup: | |
name: 'Clean up container images' | |
uses: ./.github/workflows/job-container-image-cleanup.yml | |
lint: | |
name: 'Lint the repository' | |
uses: ./.github/workflows/job-lint.yml | |
test: | |
name: 'Run tests and lint artifacts' | |
needs: | |
- container-build | |
- lint | |
secrets: inherit | |
strategy: | |
fail-fast: false # Run the whole matrix for maximum information. No matter if we fail with one job early. | |
matrix: | |
os: | |
- 'macOS-latest' | |
- 'ubuntu-latest' | |
- 'windows-latest' | |
uses: ./.github/workflows/job-test.yml | |
with: | |
os: ${{ matrix.os }} |