Skip to content

Commit

Permalink
use mypy in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoMF committed Aug 21, 2023
1 parent 960977e commit 2e7ed85
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ jobs:
with:
python-version: "3.10"
- name: Install gepetuto and its dependencies
run: python -m pip install -U pip && python -m pip install .
run: python -m pip install -U pip && python -m pip install .[dev]
- name: check with gepetuto
run: gepetuto -vvca all -C tests
- name: run unit tests
run: cd tests && python -m unittest
- name: run mypy
run: mypy --explicit-package-bases tests gepetuto

0 comments on commit 2e7ed85

Please sign in to comment.