Skip to content

Merge pull request #408 from symflower/openai-reasoning_effort #799

Merge pull request #408 from symflower/openai-reasoning_effort

Merge pull request #408 from symflower/openai-reasoning_effort #799

Workflow file for this run

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 }}