aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index b0468ee..173a520 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -49,4 +49,10 @@ jobs:
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
- bash <(curl -s https://codecov.io/bash)
+ curl -s https://codecov.io/bash > codecov
+ curl -s https://raw.githubusercontent.com/codecov/codecov-bash/master/SHA256SUM > codecov.sha256
+ if ! sha256sum -c --ignore-missing --status codecov.sha256 ; then
+ echo "Download checksum verification failed"
+ exit 1
+ fi
+ bash < codecov