vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 83d282a6249541972437d1cb90f49381a996db64
parent 778e008b9b3cc179564ab97972cfacc603332149
Author: Randy Palamar <randy@rnpnr.xyz>
Date:   Sat, 22 Feb 2025 12:31:29 -0700

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:
M.github/workflows/macos.yml | 2+-
M.github/workflows/ubuntu.yml | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 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 @@ -57,4 +57,4 @@ jobs: echo "Download checksum verification failed" exit 1 fi - bash < codecov + bash < codecov || true