File tree Expand file tree Collapse file tree 3 files changed +32
-9
lines changed Expand file tree Collapse file tree 3 files changed +32
-9
lines changed Original file line number Diff line number Diff line change
1
+ name : Lint
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+
7
+ jobs :
8
+ lint :
9
+ name : Lint
10
+ runs-on : ubuntu-20.04
11
+
12
+ steps :
13
+ - name : Checkout
14
+ uses : actions/checkout@v2
15
+
16
+ - name : Install CPython 3.8
17
+ uses : actions/setup-python@v2
18
+ with :
19
+ python-version : 3.8
20
+ architecture : x64
21
+
22
+ - name : Install/fetch dependencies
23
+ run : |
24
+ set -exuo pipefail
25
+ pip install --upgrade pip setuptools
26
+ pip install tox
27
+
28
+ - name : Run linter
29
+ run : tox -e lint
Original file line number Diff line number Diff line change 12
12
arch : ppc64le
13
13
- python : " 3.8"
14
14
arch : s390x
15
- - python : " 3.8"
16
- env : LINTER=1
17
15
18
16
services :
19
17
- docker
Original file line number Diff line number Diff line change 2
2
3
3
set -exo pipefail
4
4
5
- if [[ " $LINTER " == " 1" ]]; then
6
- tox -e lint
7
- else
8
- pytest -s --cov auditwheel --cov-branch
9
- auditwheel lddtree $( python -c ' import sys; print(sys.executable)' )
10
- codecov || true # Ignore failures from codecov tool
11
- fi
5
+ pytest -s --cov auditwheel --cov-branch
6
+ auditwheel lddtree $( python -c ' import sys; print(sys.executable)' )
7
+ codecov || true # Ignore failures from codecov tool
You can’t perform that action at this time.
0 commit comments