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 7621126 commit 4d5d106Copy full SHA for 4d5d106
.github/workflows/code-coverage.yml
@@ -46,4 +46,14 @@ jobs:
46
run: bb ./script/coverage.clj
47
48
- name: Upload Code Coverage Results
49
- run: bash <(curl -s https://codecov.io/bash) -f target/coverage/codecov.json
+ run: |
50
+ echo "Downloading codecov uploader script"
51
+ curl -s https://codecov.io/bash > codecov
52
+ echo "Verifying codedov uploader script"
53
+ VERSION=$(grep 'VERSION=\".*\"' codecov | cut -d'"' -f2);
54
+ for i in 1 256 512
55
+ do
56
+ sha${i}sum -c <(curl -s "https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA${i}SUM")
57
+ done
58
+ echo "Uploading to codecov"
59
+ bash codecov -f target/coverage/codecov.json
0 commit comments