Compare commits
No commits in common. "fac4d06a93bcc76867a8224e29b94b0563bf4802" and "32347bb0ce2644f6064e892c820189d082e1673f" have entirely different histories.
fac4d06a93
...
32347bb0ce
1 changed files with 17 additions and 5 deletions
|
@ -9,15 +9,27 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: fukamachi/roswell:latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
lisp:
|
||||
- sbcl-bin
|
||||
|
||||
env:
|
||||
LISP: ${{ matrix.lisp }}
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Roswell
|
||||
env:
|
||||
LISP: ${{ matrix.lisp }}
|
||||
run: |
|
||||
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
|
||||
- name: Install Qlot
|
||||
run: ros install fukamachi/qlot
|
||||
- name: Install dependencies
|
||||
run: qlot install
|
||||
run: |
|
||||
PATH="~/.roswell/bin:$PATH"
|
||||
qlot install
|
||||
- name: Run tests
|
||||
run: .qlot/bin/rove hsx.asd
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue