mypy fix test

This commit is contained in:
Atsushi Sakai
2020-03-09 23:04:47 +09:00
parent 14ffc4a2d4
commit ae2593b444

View File

@@ -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