2024-06-01 20:16:53 +09:00
|
|
|
name: 'test'
|
2024-06-01 06:48:44 +09:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
2025-01-11 12:50:26 +09:00
|
|
|
runs-on: docker
|
2024-06-01 06:48:44 +09:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
lisp:
|
|
|
|
- sbcl-bin
|
|
|
|
- ccl-bin
|
|
|
|
|
|
|
|
env:
|
|
|
|
LISP: ${{ matrix.lisp }}
|
|
|
|
|
|
|
|
steps:
|
2025-01-11 12:50:26 +09:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
|
|
|
- uses: https://github.com/40ants/setup-lisp@v4
|
2024-06-01 06:48:44 +09:00
|
|
|
with:
|
|
|
|
asdf-system: hsx
|
2025-01-11 12:50:26 +09:00
|
|
|
- uses: https://github.com/40ants/run-tests@v2
|
2024-06-01 06:48:44 +09:00
|
|
|
with:
|
|
|
|
asdf-system: hsx
|