8
8
steps :
9
9
- uses : actions/checkout@v4
10
10
11
- - name : Build Docker image
12
- run : ./run-tests.sh --check- docker-build
11
+ - name : Check Docker build
12
+ run : ./run-tests.sh --docker-build
13
13
14
- - name : Run Docker image tests
15
- run : sudo ./run-tests.sh --check- docker-run
14
+ - name : Check Docker tests
15
+ run : sudo ./run-tests.sh --docker-tests
16
16
17
17
docs-sphinx :
18
18
runs-on : ubuntu-24.04
32
32
- name : Install Python dependencies
33
33
run : pip install -e .[docs]
34
34
35
- - name : Run Sphinx documentation with doctests
36
- run : ./run-tests.sh --check -sphinx
35
+ - name : Check Sphinx docs build
36
+ run : ./run-tests.sh --docs -sphinx
37
37
38
38
format-black :
39
39
runs-on : ubuntu-24.04
@@ -45,10 +45,10 @@ jobs:
45
45
with :
46
46
python-version : " 3.12"
47
47
48
- - name : Check Python code formatting
48
+ - name : Check formatting of Python code
49
49
run : |
50
50
pip install black
51
- ./run-tests.sh --check -black
51
+ ./run-tests.sh --format -black
52
52
53
53
format-prettier :
54
54
runs-on : ubuntu-24.04
@@ -59,51 +59,21 @@ jobs:
59
59
- name : Setup Node
60
60
uses : actions/setup-node@v4
61
61
62
- - name : Check Prettier code fomatting
62
+ - name : Check formatting of Markdown etc files
63
63
run : |
64
64
npm install prettier --global
65
- ./run-tests.sh --check-prettier
66
-
67
- format-pydocstyle :
68
- runs-on : ubuntu-24.04
69
- steps :
70
- - uses : actions/checkout@v4
71
-
72
- - name : Setup Python
73
- uses : actions/setup-python@v5
74
- with :
75
- python-version : " 3.12"
76
-
77
- - name : Check compliance with Python docstring conventions
78
- run : |
79
- pip install pydocstyle
80
- ./run-tests.sh --check-pydocstyle
65
+ ./run-tests.sh --format-prettier
81
66
82
67
format-shfmt :
83
68
runs-on : ubuntu-24.04
84
69
steps :
85
70
- name : Checkout
86
71
uses : actions/checkout@v4
87
72
88
- - name : Check shell script code fomatting
73
+ - name : Check formatting of shell scripts
89
74
run : |
90
75
sudo apt-get install shfmt
91
- ./run-tests.sh --check-shfmt
92
-
93
- lint-check-manifest :
94
- runs-on : ubuntu-24.04
95
- steps :
96
- - uses : actions/checkout@v4
97
-
98
- - name : Setup Python
99
- uses : actions/setup-python@v5
100
- with :
101
- python-version : " 3.12"
102
-
103
- - name : Check Python manifest completeness
104
- run : |
105
- pip install check-manifest
106
- ./run-tests.sh --check-manifest
76
+ ./run-tests.sh --format-shfmt
107
77
108
78
lint-commitlint :
109
79
runs-on : ubuntu-24.04
@@ -124,20 +94,20 @@ jobs:
124
94
- name : Check commit message compliance of the recently pushed commit
125
95
if : github.event_name == 'push'
126
96
run : |
127
- ./run-tests.sh --check -commitlint HEAD~1 HEAD
97
+ ./run-tests.sh --lint -commitlint HEAD~1 HEAD
128
98
129
99
- name : Check commit message compliance of the pull request
130
100
if : github.event_name == 'pull_request'
131
101
run : |
132
- ./run-tests.sh --check -commitlint ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} ${{ github.event.pull_request.number }}
102
+ ./run-tests.sh --lint -commitlint ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} ${{ github.event.pull_request.number }}
133
103
134
- lint-dockerfile :
104
+ lint-hadolint :
135
105
runs-on : ubuntu-24.04
136
106
steps :
137
107
- uses : actions/checkout@v4
138
108
139
- - name : Check Dockerfile compliance
140
- run : ./run-tests.sh --check-dockerfile
109
+ - name : Check linting of Dockerfiles
110
+ run : ./run-tests.sh --lint-hadolint
141
111
142
112
lint-flake8 :
143
113
runs-on : ubuntu-24.04
@@ -149,10 +119,10 @@ jobs:
149
119
with :
150
120
python-version : " 3.12"
151
121
152
- - name : Check compliance with pep8, pyflakes and circular complexity
122
+ - name : Check linting of Python code
153
123
run : |
154
124
pip install flake8
155
- ./run-tests.sh --check -flake8
125
+ ./run-tests.sh --lint -flake8
156
126
157
127
lint-jsonlint :
158
128
runs-on : ubuntu-24.04
@@ -163,10 +133,25 @@ jobs:
163
133
- name : Setup Node
164
134
uses : actions/setup-node@v4
165
135
166
- - name : Lint JSON files
136
+ - name : Check linting of JSON files
167
137
run : |
168
138
npm install jsonlint --global
169
- ./run-tests.sh --check-jsonlint
139
+ ./run-tests.sh --lint-jsonlint
140
+
141
+ lint-manifest :
142
+ runs-on : ubuntu-24.04
143
+ steps :
144
+ - uses : actions/checkout@v4
145
+
146
+ - name : Setup Python
147
+ uses : actions/setup-python@v5
148
+ with :
149
+ python-version : " 3.12"
150
+
151
+ - name : Check linting of Python manifest
152
+ run : |
153
+ pip install check-manifest
154
+ ./run-tests.sh --lint-manifest
170
155
171
156
lint-markdownlint :
172
157
runs-on : ubuntu-24.04
@@ -177,20 +162,35 @@ jobs:
177
162
- name : Setup Node
178
163
uses : actions/setup-node@v4
179
164
180
- - name : Lint Markdown files
165
+ - name : Check linting of Markdown files
181
166
run : |
182
167
npm install markdownlint-cli2 --global
183
- ./run-tests.sh --check-markdownlint
168
+ ./run-tests.sh --lint-markdownlint
169
+
170
+ lint-pydocstyle :
171
+ runs-on : ubuntu-24.04
172
+ steps :
173
+ - uses : actions/checkout@v4
174
+
175
+ - name : Setup Python
176
+ uses : actions/setup-python@v5
177
+ with :
178
+ python-version : " 3.12"
179
+
180
+ - name : Check linting of Python docstrings
181
+ run : |
182
+ pip install pydocstyle
183
+ ./run-tests.sh --lint-pydocstyle
184
184
185
185
lint-shellcheck :
186
186
runs-on : ubuntu-24.04
187
187
steps :
188
188
- uses : actions/checkout@v4
189
189
190
- - name : Runs shell script static analysis
190
+ - name : Check linting of shell scripts
191
191
run : |
192
192
sudo apt-get install shellcheck
193
- ./run-tests.sh --check -shellcheck
193
+ ./run-tests.sh --lint -shellcheck
194
194
195
195
lint-yamllint :
196
196
runs-on : ubuntu-24.04
@@ -205,10 +205,10 @@ jobs:
205
205
with :
206
206
python-version : " 3.12"
207
207
208
- - name : Lint YAML files
208
+ - name : Check linting of YAML files
209
209
run : |
210
210
pip install yamllint
211
- ./run-tests.sh --check -yamllint
211
+ ./run-tests.sh --lint -yamllint
212
212
213
213
python-tests :
214
214
runs-on : ubuntu-24.04
@@ -234,8 +234,8 @@ jobs:
234
234
pip install --upgrade pip setuptools wheel
235
235
pip install -e .[docs,tests,pycurl]
236
236
237
- - name : Run pytest
238
- run : ./run-tests.sh --check-pytest
237
+ - name : Check Python test suite
238
+ run : ./run-tests.sh --python-tests
239
239
240
240
- name : Codecov Coverage
241
241
if : matrix.python-version == '3.12'
0 commit comments