Skip to content

Commit 6d0b8cc

Browse files
authored
Try to fix CI (#469)
1 parent 98f9b22 commit 6d0b8cc

File tree

2 files changed

+18
-19
lines changed

2 files changed

+18
-19
lines changed

.github/workflows/Linux_CI.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434
run: pip install pytest-xdist
3535
- name: mypy check
3636
run: |
37-
find AerialNavigation -name "*.py" | xargs mypy
38-
find ArmNavigation -name "*.py" | xargs mypy
39-
find Bipedal -name "*.py" | xargs mypy
40-
find InvertedPendulumCart -name "*.py" | xargs mypy
41-
find Localization -name "*.py" | xargs mypy
42-
find Mapping -name "*.py" | xargs mypy
43-
find PathPlanning -name "*.py" | xargs mypy
44-
find PathTracking -name "*.py" | xargs mypy
45-
find SLAM -name "*.py" | xargs mypy
37+
mypy -p AerialNavigation
38+
mypy -p ArmNavigation
39+
mypy -p Bipedal
40+
mypy -p InvertedPendulumCart
41+
mypy -p Localization
42+
mypy -p Mapping
43+
mypy -p PathPlanning
44+
mypy -p PathTracking
45+
mypy -p SLAM
4646
- name: do diff style check
4747
run: bash rundiffstylecheck.sh
4848
- name: do all unit tests

.github/workflows/MacOS_CI.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,15 @@ jobs:
3636
run: pip install pytest-xdist
3737
- name: mypy check
3838
run: |
39-
find AerialNavigation -name "*.py" | xargs mypy
40-
find ArmNavigation -name "*.py" | xargs mypy
41-
find Bipedal -name "*.py" | xargs mypy
42-
find InvertedPendulumCart -name "*.py" | xargs mypy
43-
find Localization -name "*.py" | xargs mypy
44-
find Mapping -name "*.py" | xargs mypy
45-
find PathPlanning -name "*.py" | xargs mypy
46-
find PathTracking -name "*.py" | xargs mypy
47-
find SLAM -name "*.py" | xargs mypy
48-
39+
mypy -p AerialNavigation
40+
mypy -p ArmNavigation
41+
mypy -p Bipedal
42+
mypy -p InvertedPendulumCart
43+
mypy -p Localization
44+
mypy -p Mapping
45+
mypy -p PathPlanning
46+
mypy -p PathTracking
47+
mypy -p SLAM
4948
- name: do diff style check
5049
run: bash rundiffstylecheck.sh
5150

0 commit comments

Comments
 (0)