Skip to content

Commit

Permalink
GitHub Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
simendsjo committed Mar 8, 2024
1 parent a8635ee commit 6e9c50d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
on: [push]
jobs:
tests:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
# I cannot get windows working for any implementations
# - windows-latest
lisp:
- sbcl-bin
# The following doesn't work
# - ecl
# - ccl-bin
# - abcl-bin
# - clasp-bin
# - cmu-bin
# - clisp-head
runs-on: ${{ matrix.os }}
env:
LISP: ${{ matrix.lisp }}
steps:
- uses: actions/checkout@v4
- uses: 40ants/setup-lisp@v4
with:
asdf-system: sijo-doctest
qlfile-template: |
dist ultralisp http://dist.ultralisp.org
# - uses: 40ants/run-tests@v2
# with:
# asdf-system: sijo-doctest

0 comments on commit 6e9c50d

Please sign in to comment.