File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -91,12 +91,12 @@ jobs:
91
91
92
92
- name : Upload coverage data
93
93
if : ${{ startsWith(matrix.passed_name, 'py') }}
94
- uses : codecov/codecov-action@v3
94
+ uses : codecov/codecov-action@v4
95
95
with :
96
96
name : ${{ matrix.passed_name }}
97
- fail_ci_if_error : false # see https://github.com/codecov/codecov-action/issues/598
98
97
token : ${{ secrets.CODECOV_TOKEN }}
99
98
verbose : true # optional (default = false)
99
+ fail_ci_if_error : true
100
100
101
101
- name : Archive logs
102
102
uses : actions/upload-artifact@v4
@@ -125,6 +125,17 @@ jobs:
125
125
runs-on : ubuntu-latest
126
126
127
127
steps :
128
+ - name : Merge logs into a single archive
129
+ uses : actions/upload-artifact/merge@v4
130
+ with :
131
+ name : logs.zip
132
+ pattern : logs*.zip
133
+ delete-merged : true
134
+
135
+ - name : Check codecov.io status
136
+ if : github.event_name == 'pull_request'
137
+ uses : coactions/codecov-status@main
138
+
128
139
- name : Decide whether the needed jobs succeeded or failed
129
140
uses : re-actors/alls-green@release/v1
130
141
with :
You can’t perform that action at this time.
0 commit comments