-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from scymtym/master
Preparation for CST WADs, BUFFER-STREAM efficiency fixes
- Loading branch information
Showing
17 changed files
with
342 additions
and
195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: test | ||
|
||
on: [push] | ||
|
||
jobs: | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Prepare runner | ||
run: | | ||
DEBIAN_FRONTEND=noninteractive sudo apt-get -qq update \ | ||
&& DEBIAN_FRONTEND=noninteractive sudo apt-get -qq --assume-yes install \ | ||
sbcl | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Install quicklisp | ||
run: | | ||
wget https://beta.quicklisp.org/quicklisp.lisp | ||
sbcl --noinform --disable-debugger \ | ||
--load quicklisp.lisp \ | ||
--eval '(quicklisp-quickstart:install)' \ | ||
--quit | ||
- name: Run tests | ||
run: | | ||
sbcl --noinform --disable-debugger \ | ||
--load "${HOME}/quicklisp/setup.lisp" \ | ||
--eval '(asdf:initialize-source-registry (quote (:source-registry (:directory "'"$(pwd)"'") :ignore-inherited-configuration)))' \ | ||
--eval '(ql:quickload "incrementalist/test")' \ | ||
--eval '(asdf:test-system "incrementalist")' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.