From 8dc23fec2135f8c376d7aaa7696104d3deb40a8b Mon Sep 17 00:00:00 2001 From: Atsushi Sakai Date: Sun, 8 Mar 2020 23:15:13 +0900 Subject: [PATCH] mypy fail test --- .github/workflows/pythonpackage.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index af761ec7..c81ce893 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -30,11 +30,12 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: install coverage run: pip install coverage - - name: Mypy Check - uses: jpetrucciani/mypy-check@0.761 - with: - path: './AerialNavigation ./PathPlanning' - - name: Test + - name: install mypy + run: pip install mypy + - name: mypy check + run: | + - find . -name "*.py" | xargs mypy + - name: do all unit tests run: bash runtests.sh