-
Notifications
You must be signed in to change notification settings - Fork 0
278 lines (244 loc) · 8.57 KB
/
coverage.yml
File metadata and controls
278 lines (244 loc) · 8.57 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
name: Coverage
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: coverage-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
permissions:
contents: read
pull-requests: write # required to comment coverage reports on PRs
# Threshold enforced for changed lines on PRs.
# Adjust per project by overriding the env at the workflow level.
env:
COVERAGE_THRESHOLD: "80"
jobs:
# ===========================================================================
# Path filter — same approach as ci.yml
# ===========================================================================
changes:
name: Detect changes
runs-on: ubuntu-latest
outputs:
python: ${{ steps.filter.outputs.python }}
typescript: ${{ steps.filter.outputs.typescript }}
rust: ${{ steps.filter.outputs.rust }}
steps:
- uses: actions/checkout@v6
- uses: dorny/paths-filter@v4
id: filter
with:
filters: |
python:
- '**/*.py'
- '**/pyproject.toml'
- '**/uv.lock'
typescript:
- '**/*.ts'
- '**/*.tsx'
- '**/*.js'
- '**/*.jsx'
- '**/package.json'
- '**/pnpm-lock.yaml'
rust:
- '**/*.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
# ===========================================================================
# Python coverage
# ===========================================================================
python:
name: Python coverage
needs: changes
if: needs.changes.outputs.python == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
# Need full history for diff-cover to compare against base
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python
run: uv python install
- name: Install dependencies (with diff-cover)
run: |
uv sync --all-extras --dev
uv pip install diff-cover
- name: Run tests with coverage
run: |
uv run pytest \
--cov \
--cov-report=xml:coverage-python.xml \
--cov-report=term
- name: Enforce coverage on changed lines
if: github.event_name == 'pull_request'
run: |
uv run diff-cover coverage-python.xml \
--compare-branch=origin/${{ github.base_ref }} \
--fail-under=${{ env.COVERAGE_THRESHOLD }} \
--html-report=diff-cover-python.html \
--markdown-report=diff-cover-python.md
- name: Upload coverage artifacts
if: always()
uses: actions/upload-artifact@v7
with:
name: coverage-python
path: |
coverage-python.xml
diff-cover-python.html
diff-cover-python.md
retention-days: 14
- name: Comment coverage report on PR
if: github.event_name == 'pull_request' && always()
uses: marocchino/sticky-pull-request-comment@v3
with:
header: coverage-python
path: diff-cover-python.md
# ===========================================================================
# TypeScript coverage
# ===========================================================================
typescript:
name: TypeScript coverage
needs: changes
if: needs.changes.outputs.typescript == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up pnpm
uses: pnpm/action-setup@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version-file: "package.json"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests with coverage
run: |
pnpm test -- \
--ci \
--coverage \
--coverageReporters=cobertura \
--coverageReporters=lcov \
--coverageReporters=text
- name: Set up Python (for diff-cover)
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install diff-cover
run: pip install diff-cover
- name: Enforce coverage on changed lines
if: github.event_name == 'pull_request'
run: |
# jest writes coverage under each package's <pkg>/coverage/. Discover
# all per-package cobertura files and pass them to diff-cover.
mapfile -t cov_files < <(find . -path '*/coverage/cobertura-coverage.xml' \
-not -path '*/node_modules/*' | sort)
if [ "${#cov_files[@]}" -eq 0 ]; then
echo "::error::no cobertura-coverage.xml found under any package's coverage/ dir"
exit 1
fi
echo "Coverage inputs: ${cov_files[*]}"
diff-cover "${cov_files[@]}" \
--compare-branch=origin/${{ github.base_ref }} \
--fail-under=${{ env.COVERAGE_THRESHOLD }} \
--html-report=diff-cover-typescript.html \
--markdown-report=diff-cover-typescript.md
- name: Upload coverage artifacts
if: always()
uses: actions/upload-artifact@v7
with:
name: coverage-typescript
path: |
coverage/
diff-cover-typescript.html
diff-cover-typescript.md
retention-days: 14
- name: Comment coverage report on PR
if: github.event_name == 'pull_request' && always()
uses: marocchino/sticky-pull-request-comment@v3
with:
header: coverage-typescript
path: diff-cover-typescript.md
# ===========================================================================
# Rust coverage
# ===========================================================================
rust:
name: Rust coverage
needs: changes
if: needs.changes.outputs.rust == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- name: Cache cargo registry and target
uses: Swatinem/rust-cache@v2
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Run tests with coverage
run: |
cargo llvm-cov --all-features --workspace \
--cobertura --output-path coverage-rust.xml
- name: Set up Python (for diff-cover)
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install diff-cover
run: pip install diff-cover
- name: Enforce coverage on changed lines
if: github.event_name == 'pull_request'
run: |
diff-cover coverage-rust.xml \
--compare-branch=origin/${{ github.base_ref }} \
--fail-under=${{ env.COVERAGE_THRESHOLD }} \
--html-report=diff-cover-rust.html \
--markdown-report=diff-cover-rust.md
- name: Upload coverage artifacts
if: always()
uses: actions/upload-artifact@v7
with:
name: coverage-rust
path: |
coverage-rust.xml
diff-cover-rust.html
diff-cover-rust.md
retention-days: 14
- name: Comment coverage report on PR
if: github.event_name == 'pull_request' && always()
uses: marocchino/sticky-pull-request-comment@v3
with:
header: coverage-rust
path: diff-cover-rust.md
# ===========================================================================
# Aggregator — single required check
# ===========================================================================
coverage-passed:
name: Coverage passed
runs-on: ubuntu-latest
needs: [changes, python, typescript, rust]
if: always()
steps:
- name: Verify all coverage jobs succeeded or were skipped
run: |
results='${{ toJSON(needs) }}'
echo "Job results:"
echo "$results" | jq .
failed=$(echo "$results" | jq -r 'to_entries[] | select(.value.result == "failure" or .value.result == "cancelled") | .key')
if [ -n "$failed" ]; then
echo "::error::The following coverage jobs failed or were cancelled:"
echo "$failed"
exit 1
fi
echo "All coverage jobs succeeded or were skipped."