File tree 2 files changed +5
-10
lines changed
2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 9
9
steps :
10
10
- name : Checkout Repository
11
11
uses : actions/checkout@v3
12
- - name : Install Git
13
- run : apt update && apt install -y git
14
12
- name : Run Tests
15
- env :
16
- COVERALLS : ' true'
17
- COVERALLS_REPO_TOKEN : ' COVERALLS_REPO_TOKEN=AjlQRo6hsAc6TsTv0tTXXW1AWR0MuFJQP'
18
13
run : |
19
14
set -ex
20
15
sbcl --disable-debugger \
21
16
--load /root/quicklisp/setup.lisp \
22
17
--eval '(ql:update-all-dists)' \
23
18
--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
Original file line number Diff line number Diff line change 80
80
(let ((rope (rope ::make-rope " hello world" )))
81
81
(dotimes (i 15 )
82
82
(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 " @ " )))
85
85
(graph-ropes (list rope
86
86
)))
You can’t perform that action at this time.
0 commit comments