mirror of
https://github.com/vale981/lack
synced 2025-03-06 01:41:39 -05:00
18 lines
403 B
YAML
18 lines
403 B
YAML
language: common-lisp
|
|
|
|
env:
|
|
matrix:
|
|
- LISP=sbcl
|
|
- LISP=ccl
|
|
- LISP=clisp
|
|
- LISP=allegro
|
|
- LISP=abcl
|
|
- LISP=ecl
|
|
|
|
install:
|
|
# Install cl-travis
|
|
- curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | bash
|
|
|
|
script:
|
|
- cl -l prove -e '(or (prove:run :t-lack) (uiop:quit -1))'
|
|
- cl -l prove -e '(or (prove:run :t-lack-middleware-static) (uiop:quit -1))'
|