Skip to content

Commit 0891e22

Browse files
committed
Allow temporary failures
1 parent fcf990d commit 0891e22

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/unit-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,15 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Download latest codecov upload script
16-
run: wget https://codecov.io/bash -O newcodecov
16+
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
1725
- name: Detect changes to manually verify
1826
run: diff newcodecov .github/jobs/uploadcodecov.sh
1927

0 commit comments

Comments
 (0)