File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 50
50
- name : Upload coverage data
51
51
uses : actions/upload-artifact@v3
52
52
with :
53
- name : coverage-data
53
+ include-hidden-files : true
54
+ name : coverage-${{ matrix.py }}
54
55
path : " .tox/.coverage.*"
56
+ retention-days : 3
55
57
56
58
coverage :
57
59
name : Combine coverage
@@ -69,14 +71,15 @@ jobs:
69
71
- name : Setup coverage tool
70
72
run : tox -e coverage --notest
71
73
- name : Install package builder
72
- run : python -m pip install build
74
+ run : python -m pip install build[uv]
73
75
- name : Build package
74
- run : pyproject-build --wheel .
76
+ run : pyproject-build --wheel --installer uv .
75
77
- name : Download coverage data
76
78
uses : actions/download-artifact@v3
77
79
with :
78
- name : coverage-data
79
80
path : .tox
81
+ pattern : coverage-*
82
+ merge-multiple : true
80
83
- name : Combine and report coverage
81
84
run : tox -e coverage
82
85
- name : Upload HTML report
You can’t perform that action at this time.
0 commit comments