Update ci.yaml
This commit is contained in:
parent
f9625946fd
commit
8811de3993
1 changed files with 3 additions and 2 deletions
5
.github/workflows/ci.yaml
vendored
5
.github/workflows/ci.yaml
vendored
|
@ -1,13 +1,14 @@
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
# details & description at http://3bb.cc/blog/2020/09/11/github-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
|
# Controls when the action will run. Triggers the workflow on push for any branch, and
|
||||||
# pull requests to master
|
# pull requests to master
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
pull_request:
|
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
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -17,7 +18,7 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
# current ccl-bin has a flaky zip file, so roswell can't install it.
|
# current ccl-bin has a flaky zip file, so roswell can't install it.
|
||||||
# Specify a version that works for now.
|
# Specify a version that works for now.
|
||||||
lisp: [ sbcl-bin ]
|
lisp: [ sbcl-bin, ccl-bin, ecl ]
|
||||||
os: [ windows-latest, ubuntu-latest, macos-latest ]
|
os: [ windows-latest, ubuntu-latest, macos-latest ]
|
||||||
|
|
||||||
# run the job on every combination of "lisp" and "os" above
|
# run the job on every combination of "lisp" and "os" above
|
||||||
|
|
Loading…
Reference in a new issue