Skip to content

Commit

Permalink
Setup GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Dec 21, 2023
1 parent 2b05ac7 commit 8b3d221
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, pull_request]

jobs:
test:
name: ${{ matrix.lisp }}
runs-on: ubuntu-latest
strategy:
matrix:
lisp: [sbcl-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
env:
LISP: ${{ matrix.lisp }}
run: |
PATH="~/.roswell/bin:$PATH"
rove woo-test.asd

0 comments on commit 8b3d221

Please sign in to comment.