2024-06-01 11:16:53 +00:00
|
|
|
name: 'test'
|
2024-05-31 21:48:44 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
lisp:
|
|
|
|
- sbcl-bin
|
|
|
|
- ccl-bin
|
|
|
|
|
|
|
|
env:
|
|
|
|
LISP: ${{ matrix.lisp }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: 40ants/setup-lisp@v4
|
|
|
|
with:
|
|
|
|
asdf-system: hsx
|
|
|
|
- uses: 40ants/run-tests@v2
|
|
|
|
with:
|
|
|
|
asdf-system: hsx
|