fix: add mypy type checking to CI workflow
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-01-30 23:42:22 +00:00
parent 65b195a77e
commit cc2f71932e

View File

@@ -31,6 +31,12 @@ jobs:
- name: Run linting
run: ruff check src/ tests/
- name: Install type checker
run: pip install mypy
- name: Run type checking
run: mypy src/ tests/
build:
needs: test
runs-on: ubuntu-latest