paku
e03814bc97
All checks were successful
CI / test (sbcl-bin) (push) Successful in 15s
Reviewed-on: http://code.skyizwhite.dev/paku/hsx/pulls/1 Co-authored-by: paku <paku@skyizwhite.dev> Co-committed-by: paku <paku@skyizwhite.dev>
29 lines
435 B
YAML
29 lines
435 B
YAML
name: 'CI'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
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
|