Skip to content

update quicklisp step #12

update quicklisp step

update quicklisp step #12

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: Update Quicklisp
run: |
set -ex
sbcl --disable-debugger \
--load /root/quicklisp/setup.lisp \
--eval '(ql:update-all-dists)'
- name: Run Tests
run: |
set -ex
sbcl --disable-debugger \
--load /root/quicklisp/setup.lisp \
--load rope.asd \
--eval '(ql:quickload :rope/test)' \
--eval '(asdf:test-system :rope/test)' \
--eval '(quit)'