Skip to content

Commit c295f48

Browse files
committed
try workflow
1 parent ce335e9 commit c295f48

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

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

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: ci-test
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
container: fukamachi/qlot
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 rope.asd \
17+
--eval '(asdf:test-system :rope)' \
18+
--eval '(quit)'

0 commit comments

Comments
 (0)