Skip to content

Commit

Permalink
Run CI on GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Nov 9, 2023
1 parent 5e86f92 commit b091a49
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on: push

jobs:
test:
name: ${{ matrix.lisp }} on ubuntu-latest
runs-on: ubuntu-latest
strategy:
matrix:
lisp: [sbcl-bin, ccl-bin]

steps:
- uses: actions/checkout@v4
- name: Install Roswell
env:
LISP: ${{ matrix.lisp }}
ROSWELL_INSTALL_DIR: /usr
run: |
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
- name: Install Rove
run: ros install rove
- name: Run tests
run: |
PATH="~/.roswell/bin:$PATH"
rove lack.asd

0 comments on commit b091a49

Please sign in to comment.