diff options
| author | Randy Palamar <randy@rnpnr.xyz> | 2025-02-22 12:31:29 -0700 |
|---|---|---|
| committer | Randy Palamar <randy@rnpnr.xyz> | 2025-02-22 12:33:31 -0700 |
| commit | 54a2036c6cc6a97e9ea9ced38ca06c3f47f734a6 (patch) | |
| tree | 87e23bf5f901f64fa7e41a6cb21e99f09c188e46 /.github | |
| parent | b7f4057919da1d249241eeb8b2f06371a031582f (diff) | |
| download | vis-54a2036c6cc6a97e9ea9ced38ca06c3f47f734a6.tar.gz vis-54a2036c6cc6a97e9ea9ced38ca06c3f47f734a6.tar.xz | |
ci: don't let test coverage upload fail a workflow
Yes it would be better if some commits didn't have missing
coverage but failing over it doesn't give us any useful info about
the commit
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/macos.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/ubuntu.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 23b75f4..44ad488 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -54,4 +54,4 @@ jobs: echo "Download checksum verification failed" exit 1 fi - bash < codecov + bash < codecov || true diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 01132a4..ac31248 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -57,4 +57,4 @@ jobs: echo "Download checksum verification failed" exit 1 fi - bash < codecov + bash < codecov || true |
