This commit is contained in:
parent
17fe4de76a
commit
b77d13dfce
2 changed files with 15 additions and 12 deletions
|
@ -29,7 +29,7 @@ jobs:
|
||||||
~/.config/common-lisp/source-registry.conf.d
|
~/.config/common-lisp/source-registry.conf.d
|
||||||
~/lisp
|
~/lisp
|
||||||
.qlot/
|
.qlot/
|
||||||
key: roswell-${{ runner.os }}-${{ matrix.lisp }}-${{ hashFiles('qlfile.lock') }}
|
key: roswell-${{ runner.os }}-${{ matrix.lisp }}-${{ hashFiles('qlfile.lock', '.forgejo/workflows/CI.yml') }}
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
if: steps.restore-cache.outputs.cache-hit != 'true'
|
if: steps.restore-cache.outputs.cache-hit != 'true'
|
||||||
|
|
23
.github/workflows/CI.yml
vendored
23
.github/workflows/CI.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tests:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -15,14 +15,17 @@ jobs:
|
||||||
lisp:
|
lisp:
|
||||||
- sbcl-bin
|
- sbcl-bin
|
||||||
|
|
||||||
env:
|
|
||||||
LISP: ${{ matrix.lisp }}
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: 40ants/setup-lisp@v4
|
|
||||||
with:
|
- name: Install dependencies
|
||||||
asdf-system: lack-mw
|
env:
|
||||||
- uses: 40ants/run-tests@v2
|
LISP: ${{ matrix.lisp }}
|
||||||
with:
|
run: |
|
||||||
asdf-system: lack-mw
|
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
|
||||||
|
ros install fukamachi/qlot
|
||||||
|
PATH="~/.roswell/bin:$PATH"
|
||||||
|
qlot install
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: .qlot/bin/rove lack-mw.asd
|
||||||
|
|
Loading…
Reference in a new issue