Skip to content

Make a rope from streams or pathnames #14

Make a rope from streams or pathnames

Make a rope from streams or pathnames #14

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 rope.asd \
--eval '(ql:quickload :rope/test)' \
--eval '(asdf:test-system :rope/test)' \
--eval '(quit)'