File tree 5 files changed +9
-51
lines changed
5 files changed +9
-51
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,15 @@ jobs:
10
10
- name : Checkout Repository
11
11
uses : actions/checkout@v3
12
12
- name : Run Tests
13
+ env :
14
+ COVERALLS : ' true'
15
+ COVERALLS_REPO_TOKEN : ' COVERALLS_REPO_TOKEN=AjlQRo6hsAc6TsTv0tTXXW1AWR0MuFJQP'
13
16
run : |
14
17
set -ex
15
18
sbcl --disable-debugger \
16
19
--load /root/quicklisp/setup.lisp \
17
20
--eval '(ql:update-all-dists)' \
18
21
--load rope.asd \
19
- --eval '(ql:quickload :rope/test)' \
20
- --eval '(asdf:test-system :rope/test)' \
22
+ --eval '(ql:quickload :rope/test :silent t )' \
23
+ --eval '(coveralls:with-coveralls () ( asdf:test-system :rope/test) )' \
21
24
--eval '(quit)'
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
; ; graphviz.lisp
5
5
# :graph-ropes
6
6
; ; benchmark.lisp
7
+ # :benchmark-insert
7
8
))
Original file line number Diff line number Diff line change 7
7
:in-order-to ((test-op (test-op # :rope/test))))
8
8
9
9
(asdf :defsystem # :rope/test
10
- :depends-on (# :alexandria # :fiasco # :rope)
10
+ :depends-on (# :alexandria # :fiasco # :cl-coveralls # : rope)
11
11
:components ((:module " test"
12
12
:components ((:file " basic" )
13
13
(:file " fuzz" ))))
20
20
(print result)
21
21
(assert (eql t stat)))))
22
22
23
- (asdf :defsystem # :rope/benchmark
24
- :depends-on (# :rope)
25
- :components ((:module " benchmark"
26
- :components ((:file " package" )
27
- (:file " insert" )))))
28
-
29
23
(asdf :defsystem # :rope/dev
30
24
:depends-on (# :cl-dot # :rope)
31
25
:components ((:module " dev"
32
26
:components ((:file " package" )
33
- (:file " graphviz" )))))
27
+ (:file " graphviz" )
28
+ (:file " benchmark" )))))
You can’t perform that action at this time.
0 commit comments