Skip to content

fixup! Add Claude Sonnet 4.6 to benchmark — now best no-tools model a… #13

fixup! Add Claude Sonnet 4.6 to benchmark — now best no-tools model a…

fixup! Add Claude Sonnet 4.6 to benchmark — now best no-tools model a… #13

Workflow file for this run

name: CI
on:
push:
branches: [main, v2]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install ruff
- run: ruff check .
- run: ruff format --check .
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -e ".[dev]"
- run: pytest -m "not slow" --tb=short -q