diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 124e933c..5619683c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,8 @@ jobs: test: runs-on: ubuntu-latest strategy: + # continue running other jobs in the matrix when one fails + fail-fast: false matrix: racket-variant: ["BC", "CS"] # There is no "allow failures" option for GitHub Actions, but we test on diff --git a/lib/client.arc.t b/lib/client.arc.t index 2e568bac..dfe9a134 100644 --- a/lib/client.arc.t +++ b/lib/client.arc.t @@ -39,7 +39,7 @@ (assert-same "Cookie: name=value; name2=value2; Expires=Wed, 09 Jun 2021;" (encode-cookies (list "name" "value" "name2" "value2" "Expires" "Wed, 09 Jun 2021"))))) (suite send-request - (test ping-httpbin + (test get-200 (assert-same "HTTP/1.1 200 OK" - (caar (mkreq "www.httpbin.org/status/200")))))) + (caar (mkreq "httpstat.us/200"))))))