Skip to content

Use reduce

Use reduce #62

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
jobs:
test:
name: ${{ matrix.lisp }}
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
lisp:
- abcl
- ccl
- cmucl
- sbcl
runs-on: ubuntu-latest
container:
image: ghcr.io/yitzchak/archlinux-cl:latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Lisp Environment
run: |
make-rc
asdf-add
- name: Run Regression Tests
run: |
lisp -i ${{ matrix.lisp }} -e "(ql:quickload :khazern-extrinsic/test)" -e "(asdf:test-system :khazern-extrinsic)"
- name: Run ANSI Tests
run: |
lisp -i ${{ matrix.lisp }} -e "(ql:quickload :khazern-intrinsic/test)" -e "(asdf:test-system :khazern-intrinsic)"
- name: Run Extension Tests
if: ${{ matrix.lisp == 'abcl' || matrix.lisp == 'sbcl' }}
run: |
lisp -i ${{ matrix.lisp }} -e "(ql:quickload :khazern-sequence-extrinsic/test)" -e "(asdf:test-system :khazern-sequence-extrinsic)"