mirror of
https://github.com/fiddlerwoaroof/data-lens.git
synced 2025-11-08 10:16:32 +00:00
Compare commits
5 Commits
cf6e27440c
...
12e689eb52
| Author | SHA1 | Date | |
|---|---|---|---|
| 12e689eb52 | |||
| 4614d366fb | |||
| c7af5afb40 | |||
| 5de14dbe74 | |||
| ec166b4a7d |
17
.github/workflows/test.yml
vendored
17
.github/workflows/test.yml
vendored
@ -20,13 +20,19 @@ jobs:
|
||||
|
||||
steps:
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: cachix/install-nix-action@v19
|
||||
- uses: cachix/install-nix-action@v22
|
||||
with:
|
||||
extra_nix_config: |
|
||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- uses: cachix/cachix-action@v12
|
||||
with:
|
||||
name: data-lens
|
||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||
extraPullNames: nix-community
|
||||
|
||||
# Runs a set of commands using the runners shell
|
||||
- name: setup deps
|
||||
run: |
|
||||
@ -62,6 +68,9 @@ jobs:
|
||||
sbcl --disable-debugger --no-userinit \
|
||||
--load "$HOME/quicklisp/setup.lisp" \
|
||||
--eval "(mapcar 'asdf:load-asd (directory \"*.asd\"))" \
|
||||
--eval "(handler-case (asdf:test-system :data-lens) (error (c) (format t \"~a\" c) (uiop:quit 42)))" \
|
||||
--eval "(handler-case (asdf:test-system :data-lens/transducers) (error (c) (format t \"~a\" c) (uiop:quit 43)))" \
|
||||
--eval "(handler-case (ql:quickload :data-lens) (error (c) (format t \"~a\" c) (uiop:quit 42)))" \
|
||||
--eval "(handler-case (ql:quickload :data-lens/transducers) (error (c) (format t \"~a\" c) (uiop:quit 43)))" \
|
||||
--eval "(handler-case (ql:quickload :data-lens/test) (error (c) (format t \"~a\" c) (uiop:quit 44)))" \
|
||||
--eval "(handler-case (asdf:test-system :data-lens) (error (c) (format t \"~a\" c) (uiop:quit 45)))" \
|
||||
--eval "(handler-case (asdf:test-system :data-lens/transducers) (error (c) (format t \"~a\" c) (uiop:quit 46)))" \
|
||||
--quit
|
||||
|
||||
Reference in New Issue
Block a user