Skip to content

Fix mypy protocol typing and add agent typecheck rule #22

Fix mypy protocol typing and add agent typecheck rule

Fix mypy protocol typing and add agent typecheck rule #22

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Sync dependencies
run: uv sync --frozen --extra dev
- name: Lint
run: uv run make lint
- name: Type check
run: uv run make typecheck
- name: Test
run: uv run make test