From 9bf7b9af57684e46d46ca80848bd9675c2dd7988 Mon Sep 17 00:00:00 2001 From: "Mark C. Miller" Date: Wed, 15 May 2024 14:03:41 -0700 Subject: [PATCH] continue loop after failures --- .github/workflows/check-urls.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-urls.yml b/.github/workflows/check-urls.yml index 470fa5a99..591211447 100644 --- a/.github/workflows/check-urls.yml +++ b/.github/workflows/check-urls.yml @@ -86,7 +86,7 @@ jobs: continue 2 # ignore this file fi done - linkchecker -f .linkcheckerrc -F csv/linkchecker-out.csv -t 20 --check-extern --no-follow-url ".*" --timeout=30 $f + linkchecker -f .linkcheckerrc -F csv/linkchecker-out.csv -t 20 --check-extern --no-follow-url ".*" --timeout=30 $f || true cat linkchecker-out.csv >> linkchecker-out-all.csv done