Skip to content

Add ASCII and ISO-8859-1 transcoders #6

Add ASCII and ISO-8859-1 transcoders

Add ASCII and ISO-8859-1 transcoders #6

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
- clasp
- ecl
- sbcl
runs-on: ubuntu-latest
container:
image: ghcr.io/yitzchak/archlinux-cl:latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Lisp Environment
run: |
make-rc
asdf-add
- name: Run ANSI Tests
run: |
lisp -i ${{ matrix.lisp }} -e "(ql:quickload :cyclosis-extrinsic/test)" -e "(cyclosis-extrinsic/test:test :exit t)"