From eb928fce45cd0f7fd317e8d9f8b745b68cbc5ee8 Mon Sep 17 00:00:00 2001 From: Ed L Date: Sat, 15 Jul 2023 14:20:23 -0700 Subject: [PATCH] fix: make sure we're testing the right data-lens --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a0d20c9..5a14260 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -58,9 +58,10 @@ jobs: run: | export PATH="$HOME/.nix-profile/bin:$PATH" cd "$GITHUB_WORKSPACE" + ln -s "$GITHUB_WORKSPACE" "$HOME/quicklisp/local-projects" sbcl --disable-debugger --no-userinit \ --load "$HOME/quicklisp/setup.lisp" \ --eval "(mapcar 'asdf:load-asd (directory \"*.asd\"))" \ - --eval "(handler-case (asdf:test-system :data-lens) (error () (uiop:quit 42)))" \ - --eval "(handler-case (asdf:test-system :data-lens/transducers) (error () (uiop:quit 43)))" \ + --eval "(handler-case (asdf:test-system :data-lens) (error (c) (format t \"~a\" c) (uiop:quit 42)))" \ + --eval "(handler-case (asdf:test-system :data-lens/transducers) (error (c) (format t \"~a\" c) (uiop:quit 43)))" \ --quit