File tree Expand file tree Collapse file tree 3 files changed +35
-29
lines changed
Expand file tree Collapse file tree 3 files changed +35
-29
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
Original file line number Diff line number Diff line change @@ -9,9 +9,13 @@ Gunicorn
99 :alt: Supported Python versions
1010 :target: https://pypi.python.org/pypi/gunicorn
1111
12- .. image :: https://travis-ci.org /benoitc/gunicorn. svg?branch=master
12+ .. image :: https://github.com /benoitc/gunicorn/actions/workflows/tox.yml/badge. svg
1313 :alt: Build Status
14- :target: https://travis-ci.org/benoitc/gunicorn
14+ :target: https://github.com/benoitc/gunicorn/actions/workflows/tox.yml
15+
16+ .. image :: https://github.com/benoitc/gunicorn/actions/workflows/lint.yml/badge.svg
17+ :alt: Lint Status
18+ :target: https://github.com/benoitc/gunicorn/actions/workflows/lint.yml
1519
1620Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a pre-fork
1721worker model ported from Ruby's Unicorn _ project. The Gunicorn server is broadly
You can’t perform that action at this time.
0 commit comments