We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf990d commit 0891e22Copy full SHA for 0891e22
.github/workflows/unit-tests.yml
@@ -13,7 +13,15 @@ jobs:
13
steps:
14
- uses: actions/checkout@v4
15
- name: Download latest codecov upload script
16
- run: wget https://codecov.io/bash -O newcodecov
+ run: |
17
+ exit=1
18
+ while [ "$exit" -ne 0 ]; do
19
+ wget https://codecov.io/bash -O newcodecov
20
+ exit="$?"
21
+ if [ "$exit" -ne 0 ]; then
22
+ sleep 30
23
+ fi
24
+ done
25
- name: Detect changes to manually verify
26
run: diff newcodecov .github/jobs/uploadcodecov.sh
27
0 commit comments