-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying to add code coverage reporting to CI
- Loading branch information
1 parent
fb3b2ee
commit 9586d63
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import | ||
curl -Os https://cli.codecov.io/latest/linux/codecov | ||
curl -Os https://cli.codecov.io/latest/linux/codecov.SHA256SUM | ||
curl -Os https://cli.codecov.io/latest/linux/codecov.SHA256SUM.sig | ||
gpg --verify codecov.SHA256SUM.sig codecov.SHA256SUM | ||
|
||
shasum -a 256 -c codecov.SHA256SUM | ||
sudo chmod +x codecov | ||
./codecov --verbose upload-process --fail-on-error |