29 lines
508 B
YAML
29 lines
508 B
YAML
name: 'test'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
pull_request:
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: docker
|
|
|
|
strategy:
|
|
matrix:
|
|
lisp:
|
|
- sbcl-bin
|
|
- ccl-bin
|
|
|
|
env:
|
|
LISP: ${{ matrix.lisp }}
|
|
|
|
steps:
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
|
- uses: https://github.com/40ants/setup-lisp@v4
|
|
with:
|
|
asdf-system: hsx
|
|
- uses: https://github.com/40ants/run-tests@v2
|
|
with:
|
|
asdf-system: hsx
|