Skip to content

feat(gemini): adopt 3.7 Flash and clamp thinking levels per model #38

feat(gemini): adopt 3.7 Flash and clamp thinking levels per model

feat(gemini): adopt 3.7 Flash and clamp thinking levels per model #38

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Ruff
run: ruff check .
- name: Tests
run: pytest tests/ -q