Skip to content

fix a test

fix a test #15

Workflow file for this run

name: ci-test
on: push
jobs:
test:
runs-on: ubuntu-latest
container: bdockerimg/quicklisp
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Run Tests
run: |
set -ex
sbcl --disable-debugger \
--load /root/quicklisp/setup.lisp \
--eval '(ql:update-all-dists)' \
--load thespis.asd \
--eval '(ql:quickload :thespis/test)' \
--eval '(asdf:test-system :thespis/test)' \
--eval '(quit)'