From 96a8ea5ee6c73462db8b9263f1d9f8b9be4bbc04 Mon Sep 17 00:00:00 2001 From: Edward Langley Date: Tue, 29 Mar 2022 21:51:47 -0700 Subject: [PATCH] chore: test quicklisp install failure --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f4159da..a0e51ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,7 +34,7 @@ jobs: cd wget 'https://beta.quicklisp.org/quicklisp.lisp' sbcl --load quicklisp.lisp \ - --eval '(quicklisp-quickstart:install)' \ + --eval '(handler-case (progn (error "fail!") (quicklisp-quickstart:install)) (error () (quit 40)))' \ --quit - name: run tests