Add define-interface #45
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: ${{ matrix.lisp }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
lisp: | |
- clasp | |
- sbcl | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/yitzchak/archlinux-cl:latest | |
steps: | |
- name: Checkout nontrivial-gray-streams | |
uses: actions/checkout@v4 | |
with: | |
repository: yitzchak/nontrivial-gray-streams | |
path: nontrivial-gray-streams | |
- name: Checkout Incless | |
uses: actions/checkout@v4 | |
with: | |
repository: s-expressionists/Incless | |
path: incless | |
- name: Checkout Inravina | |
uses: actions/checkout@v4 | |
with: | |
repository: s-expressionists/Inravina | |
path: inravina | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
path: invistra | |
- name: Setup Lisp Environment | |
run: | | |
make-rc | |
asdf-add | |
- name: Run Regression Tests | |
run: | | |
lisp -i ${{ matrix.lisp }} -e "(defparameter cl-user::*exit-on-test-failures* t)" -e "(ql:quickload :invistra-extrinsic/test)" -e "(parachute:test :invistra-extrinsic/test/regression)" | |
- name: Run ANSI Tests | |
run: | | |
lisp -i ${{ matrix.lisp }} -e "(ql:quickload :invistra-extrinsic/test)" -e "(invistra-extrinsic/test/ansi:test :exit t)" | |
- name: Run Numeral Tests | |
run: | | |
lisp -i ${{ matrix.lisp }} -e "(defparameter cl-user::*exit-on-test-failures* t)" -e "(ql:quickload :invistra-numeral/test)" -e "(parachute:test :invistra-numeral/test)" |