Add with-standard-io-syntax and protect lambda list on ECL/CLASP #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
test: | |
name: Test | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
matrix: | |
lisp: | |
- clasp | |
- cmucl | |
- abcl | |
fail-fast: false | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/yitzchak/archlinux-cl:latest | |
steps: | |
- name: Checkout trivial-stream-column | |
uses: actions/checkout@v3 | |
with: | |
repository: yitzchak/trivial-stream-column | |
path: trivial-stream-column | |
- name: Checkout Incless | |
uses: actions/checkout@v3 | |
with: | |
repository: s-expressionists/Incless | |
path: incless | |
- name: Checkout Inravina | |
uses: actions/checkout@v3 | |
with: | |
path: inravina | |
- name: Setup Lisp Environment | |
run: | | |
make-rc | |
asdf-add | |
- name: Run Shim Tests | |
run: | | |
lisp -i ${{ matrix.lisp }} -e "(ql:quickload :inravina-shim/test)" -e "(asdf:test-system :inravina-shim)" | |