Skip to content

Commit aa40e44

Browse files
committed
fix workflow
1 parent e006923 commit aa40e44

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/workflows/ci-test.yaml

+3-8
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,13 @@ jobs:
99
steps:
1010
- name: Checkout Repository
1111
uses: actions/checkout@v3
12-
- name: Install Git
13-
run: apt update && apt install -y git
1412
- name: Run Tests
15-
env:
16-
COVERALLS: 'true'
17-
COVERALLS_REPO_TOKEN: 'COVERALLS_REPO_TOKEN=AjlQRo6hsAc6TsTv0tTXXW1AWR0MuFJQP'
1813
run: |
1914
set -ex
2015
sbcl --disable-debugger \
2116
--load /root/quicklisp/setup.lisp \
2217
--eval '(ql:update-all-dists)' \
2318
--load rope.asd \
24-
--eval '(ql:quickload :rope/test :silent t)' \
25-
--eval '(coveralls:with-coveralls () (asdf:test-system :rope/test))' \
26-
--eval '(quit)'
19+
--eval '(ql:quickload :rope/test)' \
20+
--eval '(asdf:test-system :rope/test)' \
21+
--eval '(quit)'name: ci-test

dev/graphviz.lisp

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
(let ((rope (rope::make-rope "hello world")))
8181
(dotimes (i 15)
8282
(setf rope (rope:append-rope rope "!")))
83-
;; (dotimes (i 15)
84-
;; (setf rope (rope::balance-rope rope)))
83+
(dotimes (i 5)
84+
(setf rope (rope:insert-rope rope 8 "@")))
8585
(graph-ropes (list rope
8686
)))

0 commit comments

Comments
 (0)