We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce335e9 commit df3ca00Copy full SHA for df3ca00
.github/workflows/ci-test.yaml
@@ -0,0 +1,21 @@
1
+name: ci-test
2
+
3
+on: push
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ container: bdockerimg/quicklisp
9
+ steps:
10
+ - name: Checkout Repository
11
+ uses: actions/checkout@v3
12
+ - name: Run Tests
13
+ run: |
14
+ set -ex
15
+ sbcl --disable-debugger \
16
+ --load /root/quicklisp/setup.lisp \
17
+ --eval '(ql:update-all-dists)' \
18
+ --load rope.asd \
19
+ --eval '(ql:quickload :rope/test)' \
20
+ --eval '(asdf:test-system :rope/test)' \
21
+ --eval '(quit)'
0 commit comments