Skip to content

Commit

Permalink
Add GitHub Actions for mirror repo
Browse files Browse the repository at this point in the history
  • Loading branch information
skyizwhite committed Jan 11, 2025
1 parent 9dd80a7 commit 04430ec
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 04430ec

Please sign in to comment.