config: remove default_response_format
and default_language
optio…
#206
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: test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- "src/**" | |
- "tests/**" | |
- ".github/workflows/test.yaml" | |
pull_request: | |
paths: | |
- "src/**" | |
- "tests/**" | |
- ".github/workflows/test.yaml" | |
jobs: | |
pytest: | |
strategy: | |
fail-fast: false # Continue running jobs even if one fails | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v5 | |
with: | |
version: "latest" | |
enable-cache: true | |
- run: uv python install 3.12 | |
- run: uv sync --all-extras | |
- run: uv run pytest -m "not requires_openai" |