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 d9dacae
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: 'CI'

on:
push:
branches:
- 'master'
pull_request:

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
lisp:
- sbcl-bin

steps:
- uses: actions/checkout@v4

- name: Install dependencies
if: steps.restore-cache.outputs.cache-hit != 'true'
env:
LISP: ${{ matrix.lisp }}
run: |
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
ros install fukamachi/qlot
PATH="~/.roswell/bin:$PATH"
qlot install
- name: Run tests
run: .qlot/bin/rove hsx.asd

0 comments on commit d9dacae

Please sign in to comment.