From 9f53b1a106d6675a9a78f5b5aaf2152154df4059 Mon Sep 17 00:00:00 2001 From: Edward Langley Date: Tue, 29 Mar 2022 22:22:12 -0700 Subject: [PATCH] chore: add health check to dep setup --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d0dccb..56789fd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,12 +31,13 @@ jobs: - name: setup deps run: | nix profile install nixpkgs\#sbcl + command -v sbcl || exit 38 cd wget 'https://beta.quicklisp.org/quicklisp.lisp' sbcl --eval '(require :uiop)' \ --load quicklisp.lisp \ - --eval '(handler-case (progn (error "fail!") (quicklisp-quickstart:install)) (error () (uiop:quit 40)))' \ --quit + [[ -f "$HOME"/quicklisp/setup.lisp ]] || exit 39 - name: run tests run: |