File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -442,8 +442,11 @@ jobs:
442442 if : (success() || failure()) && steps.container.outcome == 'success'
443443 uses : actions/upload-artifact@v4
444444 with :
445+ # The path .coverage is a directory that contains the combined coverage
446+ # data file .coverage, which is a hidden file because of the leading dot
445447 name : coverage-${{ steps.copy-coverage.outputs.tests_id }}
446448 path : .coverage
449+ include-hidden-files : true
447450
448451 coverage-report :
449452 runs-on : ubuntu-latest
@@ -530,11 +533,11 @@ jobs:
530533 # Combining
531534
532535 - name : Download coverage artifacts
536+ if : (success() || failure()) && steps.container.outcome == 'success'
533537 uses : actions/download-artifact@v4
534538 with :
535539 path : .coverage
536540 pattern : coverage-*
537- if : (success() || failure()) && steps.container.outcome == 'success'
538541
539542 - name : Coverage report
540543 if : (success() || failure()) && steps.container.outcome == 'success'
You can’t perform that action at this time.
0 commit comments