Skip to content

Commit df3ca00

Browse files
committed
CI workflow
1 parent ce335e9 commit df3ca00

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: .github/workflows/ci-test.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)