File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
.github/actions/test-reporter-upload Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -271,13 +271,13 @@ runs:
271271 fi
272272 - name : check codecov config
273273 id : check-codecov-config
274- if ${{ !cancelled() && (steps.output_can_upload.outputs.can_upload == 'true') && (steps.output_upload_tools.outputs.can_upload_to_codecov == 'true') }}
274+ if : ${{ !cancelled() && (steps.output_can_upload.outputs.can_upload == 'true') && (steps.output_upload_tools.outputs.can_upload_to_codecov == 'true') }}
275275 shell : bash
276276 run : |
277277 ${{ github.workspace }}/tests/check_codecov || exit 1
278- - name : Upload ${{ steps.output_os.outputs.os }} Python ${{ steps.output_python.outputs.python-version }} coverage to Codecov
278+ - name : Upload ${{ steps.output_os.outputs.os }} Python ${{ steps.output_python.outputs.python-version }} coverage to Codecov
279279 id : coverage-codecov-upload
280- if ${{ success() && (steps.output_can_upload.outputs.can_upload == 'true') && (steps.output_upload_tools.outputs.can_upload_to_codecov == 'true') }}
280+ if : ${{ success() && (steps.output_can_upload.outputs.can_upload == 'true') && (steps.output_upload_tools.outputs.can_upload_to_codecov == 'true') }}
281281 uses : codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
282282 with :
283283 token : ${{ secrets.codecov-token }}
@@ -291,7 +291,7 @@ runs:
291291 fail_ci_if_error : false
292292 - name : Upload ${{ steps.output_os.outputs.os }} Python ${{ steps.output_python.outputs.python-version }} Artifact
293293 id : coverage-reports-upload
294- if ${{ !cancelled() && (steps.output_can_upload.outputs.can_upload == 'true') }}
294+ if : ${{ !cancelled() && (steps.output_can_upload.outputs.can_upload == 'true') }}
295295 uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
296296 with :
297297 name : Test-Report-${{ steps.output_os.outputs.os }}-${{ steps.output_python.outputs.python-version }}-${{ steps.output_sha.outputs.sha }}
You can’t perform that action at this time.
0 commit comments