Skip to content

Default Claude operator model to Fable 5 #5

Default Claude operator model to Fable 5

Default Claude operator model to Fable 5 #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: pytest (${{ matrix.os }}, py${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install -e ".[dev]"
- name: Configure git identity for seal tests
run: |
git config --global user.name "CI"
git config --global user.email "ci@example.invalid"
- name: Test
run: pytest -q