-
-
Notifications
You must be signed in to change notification settings - Fork 151
102 lines (93 loc) · 2.24 KB
/
linters.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: linters
on:
push:
paths-ignore:
- .run/
- .coveragerc
- .gitignore
- CHANGELOG.md
- CONTRIBUTING.md
- LICENSE
- mkdocs.yml
- README.md
- .github/workflows/deploy-mkdocs-poetry.yml
- .github/workflows/publish.yml
- .github/workflows/tests.yml
- .github/workflows/traffic2badge.yml
- .github/FUNDING.yml
pull_request:
paths-ignore:
- .run/
- .coveragerc
- .gitignore
- CHANGELOG.md
- CONTRIBUTING.md
- LICENSE
- mkdocs.yml
- README.md
- .github/workflows/deploy-mkdocs-poetry.yml
- .github/workflows/publish.yml
- .github/workflows/tests.yml
- .github/workflows/traffic2badge.yml
- .github/FUNDING.yml
jobs:
Black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- run: |
pip install black
.run/lint_black.sh
Pycodestyle:
name: Lint Pycodestyle
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Pycodestyle
run: |
pip install pycodestyle
.run/lint_pycodestyle.sh
Pylint:
name: Lint Pylint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Pylint
run: |
pip install pylint
.run/lint_pylint.sh
Pylint-full-report:
name: Lint Pylint Full Report
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Pylint Full Report
run: |
pip install pylint
touch __init__.py
pylint $(pwd) --disable="" --ignore-patterns=.venv --exit-zero
rm __init__.py
Mypy:
name: Mypy
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Mypy
run: |
pip install mypy
.run/lint_mypy.sh