We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b9a0c8 commit 8dc23feCopy full SHA for 8dc23fe
.github/workflows/pythonpackage.yml
@@ -30,11 +30,12 @@ jobs:
30
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
31
- name: install coverage
32
run: pip install coverage
33
- - name: Mypy Check
34
- uses: jpetrucciani/[email protected]
35
- with:
36
- path: './AerialNavigation ./PathPlanning'
37
- - name: Test
+ - name: install mypy
+ run: pip install mypy
+ - name: mypy check
+ run: |
+ - find . -name "*.py" | xargs mypy
38
+ - name: do all unit tests
39
run: bash runtests.sh
40
41
0 commit comments