Add type checker (#3116)

This commit is contained in:
Marcelo Trylesinski
2025-01-13 17:20:33 +00:00
committed by GitHub
parent 8406e2e789
commit 406707b2bd
5 changed files with 82 additions and 11 deletions

View File

@ -152,3 +152,21 @@ jobs:
- name: Run tests
run: tox -e ruff
typecheck:
name: typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox
- name: Run tests
run: tox -e typecheck