File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 50
50
os : ${{ matrix.os }}
51
51
continue-on-error : ${{ matrix.experimental }}
52
52
enable-cache : ${{ github.ref_type == 'tag' && 'false' || 'auto' }}
53
- upload-coverage :
54
- ${{ matrix.python-version == 3.11 && matrix.os == 'ubuntu-24.04' }}
55
53
secrets :
56
- # yamllint disable-line rule:line-length
57
54
codecov-token : ${{ secrets.CODECOV_TOKEN }}
58
55
59
56
zizmor :
Original file line number Diff line number Diff line change 17
17
enable-cache :
18
18
type : string
19
19
required : true
20
- upload-coverage :
21
- type : boolean
22
20
secrets :
23
21
codecov-token :
24
22
required : false
@@ -56,13 +54,13 @@ jobs:
56
54
run : |
57
55
uv run make mototest
58
56
- name : Upload coverage to Codecov
59
- if : ${{ inputs.upload-coverage }}
60
57
# yamllint disable-line rule:line-length
61
58
uses : codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
62
59
with :
63
60
token : ${{ secrets.codecov-token }} # not required for public repos
64
61
files : ./coverage.xml
65
- flags : unittests # optional
62
+ # yamllint disable-line rule:line-length
63
+ flags : unittests,os-${{ inputs.os }},python-${{ inputs.python-version }} # optional
66
64
name : codecov-umbrella # optional
67
65
fail_ci_if_error : true # optional (default = false)
68
66
verbose : true # optional (default = false)
You can’t perform that action at this time.
0 commit comments