Update ci.yaml

This commit is contained in:
nik gaffney 2024-01-02 14:05:09 +01:00 committed by GitHub
parent f9625946fd
commit 8811de3993
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,14 @@
name: CI
# details & description at http://3bb.cc/blog/2020/09/11/github-ci/
# and/or https://github.com/roswell/roswell/wiki/GitHub-Actions
# Controls when the action will run. Triggers the workflow on push for any branch, and
# pull requests to master
on:
push:
pull_request:
branches: [ endless ]
branches: [ endless, core ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
@ -17,7 +18,7 @@ jobs:
matrix:
# current ccl-bin has a flaky zip file, so roswell can't install it.
# Specify a version that works for now.
lisp: [ sbcl-bin ]
lisp: [ sbcl-bin, ccl-bin, ecl ]
os: [ windows-latest, ubuntu-latest, macos-latest ]
# run the job on every combination of "lisp" and "os" above