Add GitHub Actions for mirror repo
All checks were successful
CI / test (sbcl-bin) (push) Successful in 29s
All checks were successful
CI / test (sbcl-bin) (push) Successful in 29s
This commit is contained in:
parent
9dd80a7e60
commit
04430ec978
1 changed files with 28 additions and 0 deletions
28
.github/workflows/CI.yml
vendored
Normal file
28
.github/workflows/CI.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
name: 'CI'
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
lisp:
|
||||
- sbcl-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
|
Loading…
Reference in a new issue