-
Notifications
You must be signed in to change notification settings - Fork 12
349 lines (284 loc) · 11.5 KB
/
check-build-deploy.yaml
File metadata and controls
349 lines (284 loc) · 11.5 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
name: Check, Build and Deploy
"on":
pull_request:
branches: [main]
push:
branches: [main]
tags: [v*]
jobs:
uv-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Check uv.lock (ensure all dependencies up to date)
run: uv lock --check
flake8: # yamllint disable-line rule:key-ordering
env:
UV_FROZEN: true
UV_NO_SYNC: true
UV_PYTHON_DOWNLOADS: never
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set Up Python
uses: actions/setup-python@v6
with:
python-version: 3.14
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Run Flake8
# TODO: Run from locked dependencies, once project's Python version has been updated to 3.14
run: uvx --python 3.14 --with "flake8-carrot>=0.1.4" --with "flake8-pyproject>=1.2"
-- flake8
mypy: # yamllint disable-line rule:key-ordering
env:
UV_FROZEN: true
UV_NO_SYNC: true
UV_PYTHON_DOWNLOADS: never
needs: [uv-check]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
component: [package, tests]
steps:
- uses: actions/checkout@v6
- name: Set Up Python
uses: actions/setup-python@v6
with:
python-version-file: .python-version
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install mypy From Locked Dependencies
run: |
if [ "${{matrix.component}}" == "package" ]; then
ARGS=()
elif [ "${{matrix.component}}" == "tests" ]; then
ARGS=("--group" "test")
else
echo "Error: Unknown matrix.component value: '${{matrix.component}}'" >&2
exit 1
fi
uv sync --no-group dev --group type-check "${ARGS[@]}"
- id: store-hashed-python-version
name: Store Hashed Python Version
run: echo "hashed_python_version=$(uv run -- python -VV | sha256sum | cut -d' ' -f1)"
>> "$GITHUB_OUTPUT"
- uses: actions/cache@v5
with:
key: mypy|${{steps.store-hashed-python-version.outputs.hashed_python_version}}|${{matrix.component}}
path: ./.mypy_cache
- name: Run mypy # TODO: Add GitHub workflows output format
run: |
if [ "${{matrix.component}}" == "package" ]; then
ARGS=("." "--exclude" "tests/")
elif [ "${{matrix.component}}" == "tests" ]; then
ARGS=("tests/")
else
echo "Error: Unknown matrix.component value: '${{matrix.component}}'" >&2
exit 1
fi
uv run -- mypy "${ARGS[@]}"
pre-commit: # yamllint disable-line rule:key-ordering
env:
UV_FROZEN: true
UV_NO_SYNC: true
UV_PYTHON_DOWNLOADS: never
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Add GB Locale
run: |
sudo apt-get update
sudo apt-get install -y locales
sudo locale-gen en_GB.UTF-8
shell: bash
- name: Set Up Python
uses: actions/setup-python@v6
with:
python-version-file: .python-version
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install prek From Locked Dependencies
run: uv sync --only-group pre-commit
- id: store-hashed-python-version
name: Store Hashed Python Version
run: echo "hashed_python_version=$(uv run -- python -VV | sha256sum | cut -d' ' -f1)"
>> "$GITHUB_OUTPUT"
- uses: actions/cache@v5
with:
key: prek|${{steps.store-hashed-python-version.outputs.hashed_python_version}}|${{hashFiles('.pre-commit-config.yaml')}}
path: ~/.cache/prek
- name: Setup pre-commit Environments
run: uv run -- prek install-hooks
- name: Run prek
run: |
set -o pipefail
if [[ "${{github.event_name}}" == "push" && "${{github.ref_name}}" == "${{github.event.repository.default_branch}}" ]]; then
uv run -- prek run --all-files --hook-stage manual --color never --skip ruff-check --skip uv-lock --skip gitlint-ci | tee /tmp/prek.log
else
uv run -- prek run --all-files --hook-stage manual --color never --skip ruff-check --skip uv-lock | tee /tmp/prek.log
fi
- name: Ensure No Warnings
run: "if grep -q '^warning: ' /tmp/prek.log; then exit 1; fi"
- if: ${{!cancelled()}}
uses: pre-commit-ci/lite-action@v1.1.0
pymarkdown: # yamllint disable-line rule:key-ordering
env:
UV_FROZEN: true
UV_NO_SYNC: true
UV_PYTHON_DOWNLOADS: never
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set Up Python
uses: actions/setup-python@v6
with:
python-version-file: .python-version
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install PyMarkdown From Locked Dependencies
run: uv sync --only-group lint-format
- name: Run PyMarkdown scan
run: uv run -- pymarkdown scan .
pytest: # yamllint disable-line rule:key-ordering
env:
UV_FROZEN: true
UV_NO_SYNC: true
UV_PYTHON_DOWNLOADS: never
needs: [uv-check]
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set Up Python
uses: actions/setup-python@v6
with:
python-version-file: .python-version
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install pytest From Locked Dependencies
run: uv sync --no-group dev --group test
- id: store-hashed-python-version
name: Store Hashed Python Version
run: echo "hashed_python_version=$(uv run -- python -VV | sha256sum | cut -d' ' -f1)"
>> "$GITHUB_OUTPUT"
- uses: actions/cache@v5
with:
key: pytest|${{steps.store-hashed-python-version.outputs.hashed_python_version}}
path: ./.pytest_cache
- name: Run pytest
run: uv run pytest --cov --cov-branch --cov-report=xml --junitxml=junit.xml
- if: ${{!cancelled()}}
name: Upload test results to Codecov
uses: codecov/test-results-action@v1
with:
use_oidc: true
- if: ${{!cancelled()}}
name: Upload coverage report to Codecov
uses: codecov/codecov-action@v5
with:
use_oidc: true
ruff-lint: # yamllint disable-line rule:key-ordering
env:
UV_FROZEN: true
UV_NO_SYNC: true
UV_PYTHON_DOWNLOADS: never
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set Up Python
uses: actions/setup-python@v6
with:
python-version-file: .python-version
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install ruff From Locked Dependencies
run: uv sync --only-group lint-format
- id: store-hashed-python-version
name: Store Hashed Python Version
run: echo "hashed_python_version=$(uv run -- python -VV | sha256sum | cut -d' ' -f1)"
>> "$GITHUB_OUTPUT"
- uses: actions/cache@v5
with:
key: ruff|${{steps.store-hashed-python-version.outputs.hashed_python_version}}
path: ./.ruff_cache
- name: Run Ruff
run: uv run -- ruff check --no-fix --output-format=github
build-and-publish: # yamllint disable-line rule:key-ordering
env:
IMAGE_NAME: ${{github.repository}}
REGISTRY: ghcr.io
environment: publish
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name
== 'CSSUoB/TeX-Bot-Py-V2'
needs: [mypy, pre-commit, pymarkdown, pytest, ruff-lint, uv-check]
permissions:
attestations: write
contents: read
id-token: write
packages: write
runs-on: ubuntu-latest
steps:
- name: Log in to the Container registry
uses: docker/login-action@v4.0.0
with:
password: ${{secrets.GITHUB_TOKEN}}
registry: ${{env.REGISTRY}}
username: ${{github.actor}}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- id: docker-extract-metadata
name: Extract metadata (tags, labels) for Docker
uses: docker/metadata-action@v5.10.0
with:
images: ${{env.REGISTRY}}/${{env.IMAGE_NAME}}
tags: |-
type=ref,event=branch,prefix=br-
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern=v{{major}},enable=${{!startsWith(github.ref, 'refs/tags/v0.')}}
- id: build-and-publish
name: Build and Publish
uses: docker/build-push-action@v6
with:
labels: ${{steps.docker-extract-metadata.outputs.labels}}
push: true
tags: ${{steps.docker-extract-metadata.outputs.tags}}
- name: Generate Artifact Attestation
uses: actions/attest-build-provenance@v4
with:
push-to-registry: true
subject-digest: ${{steps.build-and-publish.outputs.digest}}
subject-name: ${{env.REGISTRY}}/${{env.IMAGE_NAME}}
release: # yamllint disable-line rule:key-ordering
if: github.ref_type == 'tag'
needs: [build-and-publish]
permissions:
contents: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Create GitHub Release
env: # yamllint disable-line rule:key-ordering
GITHUB_TOKEN: ${{github.token}}
run: gh release create '${{github.ref_name}}' --repo '${{github.repository}}' --verify-tag
--generate-notes