Skip to content

Commit fa1ff0b

Browse files
author
Joel Collins
committed
Added mypy to CI
1 parent 3104d86 commit fa1ff0b

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ jobs:
3434
run: poetry run black . --check
3535
continue-on-error: true
3636

37+
- name: Analyse with MyPy
38+
run: poetry run mypy src
39+
3740
- name: Test with pytest
3841
run: poetry run pytest
3942

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ jobs:
3636
run: poetry run black . --check
3737
continue-on-error: true
3838

39+
- name: Analyse with MyPy
40+
run: poetry run mypy src
41+
3942
- name: Test with pytest
4043
run: poetry run pytest
4144

0 commit comments

Comments
 (0)