From ae2593b44425f805da85e245d925554cd8336700 Mon Sep 17 00:00:00 2001 From: Atsushi Sakai Date: Mon, 9 Mar 2020 23:04:47 +0900 Subject: [PATCH] mypy fix test --- .github/workflows/pythonpackage.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 1844e538..b3f1aa36 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -9,7 +9,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.6, 3.7] + python-version: [3.7, 3.8] steps: - uses: actions/checkout@v1 @@ -34,7 +34,15 @@ jobs: run: pip install mypy - name: mypy check run: | - find . -name "*.py" | xargs mypy + find AerialNavigation -name "*.py" | xargs mypy + find ArmNavigation -name "*.py" | xargs mypy + find Bipedal -name "*.py" | xargs mypy + find InvertedPendulumCart -name "*.py" | xargs mypy + find Localization -name "*.py" | xargs mypy + find Mapping -name "*.py" | xargs mypy + find PathPlanning -name "*.py" | xargs mypy + find PathTracking -name "*.py" | xargs mypy + find SLAM -name "*.py" | xargs mypy - name: do all unit tests run: bash runtests.sh