2025-01-11 13:29:42 +00:00
|
|
|
name: 'CI'
|
2024-06-13 10:43:02 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
2025-01-11 13:29:42 +00:00
|
|
|
|
2024-06-13 10:43:02 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
lisp:
|
|
|
|
- sbcl-bin
|
2025-01-11 13:29:42 +00:00
|
|
|
|
2024-06-13 10:43:02 +00:00
|
|
|
env:
|
|
|
|
LISP: ${{ matrix.lisp }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: 40ants/setup-lisp@v4
|
|
|
|
with:
|
|
|
|
asdf-system: ningle-fbr
|
|
|
|
- uses: 40ants/run-tests@v2
|
|
|
|
with:
|
|
|
|
asdf-system: ningle-fbr
|