Skip to content

Fix/mypy issues

Fix/mypy issues #1

Workflow file for this run

name: Type Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
typecheck:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies
run: |
pip install uv
uv pip install .[dev]
- name: Run type checks
run: |
uv tool run --python "${{ matrix.python-version }}" mypy --strict src