Skip to content

Commit 26bb2b2

Browse files
authored
Update pythonpackage.yml
1 parent ed60242 commit 26bb2b2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,21 @@ jobs:
1717
uses: actions/setup-python@v1
1818
with:
1919
python-version: ${{ matrix.python-version }}
20+
2021
- name: Install dependencies
2122
run: |
2223
python -m pip install --upgrade pip
2324
pip install numpy
2425
pip install transforms3d
26+
2527
- name: Lint with flake8
2628
run: |
2729
pip install flake8
2830
# stop the build if there are Python syntax errors or undefined names
2931
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3032
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3133
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
34+
3235
- name: Test with pytest
3336
run: |
3437
pip install pytest

0 commit comments

Comments
 (0)