We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceaec9a commit 30fa169Copy full SHA for 30fa169
.github/workflows/ci.yml
@@ -10,8 +10,6 @@ on:
10
jobs:
11
test:
12
runs-on: ubuntu-latest
13
- permissions:
14
- id-token: write
15
16
steps:
17
- uses: actions/checkout@v4
@@ -24,6 +22,22 @@ jobs:
24
22
uv pip install pytest-github-actions-annotate-failures
25
23
- run: uv run robotpy coverage test
26
- run: uv run coverage xml
+ - uses: actions/upload-artifact@v4
+ with:
27
+ name: coverage-data
28
+ path: '*coverage.*'
29
+ include-hidden-files: true
30
+
31
+ report-coverage:
32
+ needs: [test]
33
+ runs-on: ubuntu-latest
34
+ permissions:
35
+ id-token: write
36
37
+ steps:
38
+ - uses: actions/download-artifact@v4
39
40
41
- uses: codecov/codecov-action@v4
42
with:
43
use_oidc: true
0 commit comments