chore(tools): add mypy as dev tool but don't check in CI for now

- we'll see if the benefits of static typing are worth it or not
This commit is contained in:
Arthur Meyre
2021-07-16 12:30:06 +02:00
parent e0c838b230
commit 36d93a60d9
5 changed files with 58 additions and 7 deletions

View File

@@ -43,8 +43,10 @@ jobs:
- name: Conformance
id: conformance
if: ${{ success() && !cancelled() }}
# keep going register errors in the intermediate target but executes them all
# Nicer to have pcc complete for the dev and have all the relevan conformance issues
run: |
make pcc
make --keep-going pcc
- name: PyTest
id: pytest
if: ${{ steps.conformance.outcome == 'success' && !cancelled() }}