Add typecheck to build steps

This commit is contained in:
François Voron
2022-02-18 11:10:10 +01:00
parent e79b34ed35
commit 92ef295cde
3 changed files with 25 additions and 3 deletions

View File

@ -21,9 +21,12 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.dev.txt
- name: Check codestyle
run: make format-check
- name: Lint
run: make lint
run: |
make format-check
make lint
- name: Typecheck
run: |
make typecheck
- name: Test with pytest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}