diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 159a5fe..4e47bb5 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -45,6 +45,10 @@ jobs: mkdir mypy_report poetry run mypy --pretty --html-report mypy_report/ . + - name: Check type annotations with mypy strict mode (not failing) + run: | + poetry run mypy --strict --pretty . || true + - name: Upload mypy report uses: actions/upload-artifact@v2 with: