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 bb49560 commit 075fc19Copy full SHA for 075fc19
.github/workflows/build.yaml
@@ -147,4 +147,8 @@ jobs:
147
run: yarn lint
148
149
- name: Test coverage
150
- run: bash <(curl -s --retry 5 --retry-delay 2 --connect-timeout 2 https://codecov.io/bash)
+ run: |
151
+ curl -s https://codecov.io/bash > codecov
152
+ VERSION=$(grep 'VERSION=\".*\"' codecov | cut -d'"' -f2)
153
+ sha256sum -c <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA256SUM)
154
+ bash codecov
0 commit comments