File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -158,16 +158,22 @@ jobs:
158
158
name : coverage
159
159
path : coverage/coverage-${{ steps.matrix-id.outputs.id }}.xml
160
160
161
- combine :
161
+ all-checks :
162
162
if : ${{ always() }}
163
163
runs-on : ubuntu-latest
164
- name : " All tests and coverage "
164
+ name : " All tests"
165
165
needs : [changes, style, test]
166
166
steps :
167
167
- name : Check build matrix status
168
168
if : ${{ needs.changes.outputs.changes == 'true' && (needs.style.result != 'success' || needs.test.result != 'success') }}
169
169
run : exit 1
170
170
171
+ upload-coverage :
172
+ runs-on : ubuntu-latest
173
+ name : " Upload coverage"
174
+ needs : [changes, all-checks]
175
+ if : ${{ needs.changes.outputs.changes == 'true' && needs.all-checks.result == 'success' }}
176
+ steps :
171
177
- uses : actions/checkout@v2
172
178
173
179
- name : Set up Python
You can’t perform that action at this time.
0 commit comments