Skip to content

Commit 8cdcfdc

Browse files
authored
Merge pull request #5576 from AenBleidd/vko_fix_codecov
Fix sporadic codecov uploads fails
2 parents 0282648 + 3097c6f commit 8cdcfdc

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

.codecov.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ codecov:
33
notify:
44
after_n_builds: 3
55
wait_for_ci: yes
6+
token: ${{ secrets.CODECOV_TOKEN }}
67

78
coverage:
89
status:

.github/workflows/test-report.yml

+12-11
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,15 @@ jobs:
2626
report:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- name: Download artifacts
30-
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
31-
with:
32-
run-id: ${{ github.event.workflow_run.id }}
33-
path: test-reports
34-
- uses: dorny/test-reporter@c40d89d5e987cd80f3a32b3c233556e22bdca958
35-
with:
36-
name: 'Tests Report'
37-
path: 'test-reports/**/*.xml'
38-
reporter: java-junit
39-
fail-on-error: false
29+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
30+
- name: Download artifacts
31+
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
32+
with:
33+
run-id: ${{ github.event.workflow_run.id }}
34+
path: test-reports
35+
- uses: dorny/test-reporter@c40d89d5e987cd80f3a32b3c233556e22bdca958
36+
with:
37+
name: 'Tests Report'
38+
path: 'test-reports/**/*.xml'
39+
reporter: java-junit
40+
fail-on-error: false

0 commit comments

Comments
 (0)