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 f3b42fe commit b629722Copy full SHA for b629722
.github/workflows/ci.yml
@@ -46,9 +46,9 @@ jobs:
46
run: |
47
python -m pip install -U pip
48
49
- - name: Install tox
+ - name: Install tox and coverage packages
50
51
- pip install flake8 tox tox-gh-actions 'coverage<5' coveralls
+ pip install tox tox-gh-actions 'coverage<5' coveralls
52
53
- name: Run tox and coverage
54
@@ -59,3 +59,20 @@ jobs:
59
# - name: Upload coverage to coveralls
60
# run: |
61
# coveralls
62
+
63
+ lint:
64
+ runs-on: ubuntu-latest
65
66
+ steps:
67
+ - uses: actions/checkout@v2
68
69
+ - name: Set up Python 3.6
70
+ uses: actions/setup-python@v2
71
+ with:
72
+ python-version: '3.6'
73
74
+ - name: Install tox and flake8 packages
75
+ run: pip install tox tox-gh-actions flake8
76
77
+ - name: Lint
78
+ run: tox -e flake8
0 commit comments