forked from AtsushiSakai/PythonRobotics
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (43 loc) · 1.19 KB
/
Linux_CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Linux_CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']
name: Python ${{ matrix.python-version }} CI
steps:
- uses: actions/checkout@v2
- run: git fetch --prune --unshallow
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: install coverage
run: pip install coverage
- name: install mypy
run: pip install mypy
- name: install pycodestyle
run: pip install pycodestyle
- name: install pytest-xdist
run: pip install pytest-xdist
- name: mypy check
run: |
mypy -p AerialNavigation
mypy -p ArmNavigation
mypy -p Bipedal
mypy -p InvertedPendulumCart
mypy -p Localization
mypy -p Mapping
mypy -p PathPlanning
mypy -p PathTracking
mypy -p SLAM
- name: do diff style check
run: bash rundiffstylecheck.sh
- name: do all unit tests
run: bash runtests.sh