File tree Expand file tree Collapse file tree 2 files changed +29
-27
lines changed
Expand file tree Collapse file tree 2 files changed +29
-27
lines changed Original file line number Diff line number Diff line change 1+ name : lint
2+ on : [push, pull_request]
3+ jobs :
4+ tox-lint :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions/checkout@v2
8+ - uses : actions/setup-python@v2
9+ - run : pip install --upgrade pip
10+ - run : pip install tox
11+ - run : tox -e lint
12+
13+ tox-docs-lint :
14+ runs-on : ubuntu-latest
15+ steps :
16+ - uses : actions/checkout@v2
17+ - uses : actions/setup-python@v2
18+ - run : pip install --upgrade pip
19+ - run : pip install tox
20+ - run : tox -e docs-lint
21+
22+ tox-pycodestyle :
23+ runs-on : ubuntu-latest
24+ steps :
25+ - uses : actions/checkout@v2
26+ - uses : actions/setup-python@v2
27+ - run : pip install --upgrade pip
28+ - run : pip install tox
29+ - run : tox -e pycodestyle
Original file line number Diff line number Diff line change 11name : tox
22on : [push, pull_request]
33jobs :
4- tox-lint :
5- runs-on : ubuntu-latest
6- steps :
7- - uses : actions/checkout@v2
8- - uses : actions/setup-python@v2
9- - run : pip install --upgrade pip
10- - run : pip install tox
11- - run : tox -e lint
12-
13- tox-docs-lint :
14- runs-on : ubuntu-latest
15- steps :
16- - uses : actions/checkout@v2
17- - uses : actions/setup-python@v2
18- - run : pip install --upgrade pip
19- - run : pip install tox
20- - run : tox -e docs-lint
21-
22- tox-pycodestyle :
23- runs-on : ubuntu-latest
24- steps :
25- - uses : actions/checkout@v2
26- - uses : actions/setup-python@v2
27- - run : pip install --upgrade pip
28- - run : pip install tox
29- - run : tox -e pycodestyle
30-
314 tox :
325 strategy :
336 fail-fast : false
You can’t perform that action at this time.
0 commit comments