-
-
Notifications
You must be signed in to change notification settings - Fork 8
35 lines (35 loc) · 910 Bytes
/
run-tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# .github/workflows/run-tests.yaml
name: test
on: [ push, pull_request ]
jobs:
run-tests:
strategy:
fail-fast: false
matrix:
implementation:
- sbcl
- ecl
- ccl
include:
- implementation: sbcl
image: clfoundation/sbcl:2.2.4
command: sbcl
- implementation: ecl
image: clfoundation/ecl:21.2.1
command: ecl
- implementation: ccl
image: clfoundation/ccl:1.12
command: ccl
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
env:
CI_SYSTEM: github
QUICKLISP_ADD_TO_INIT_FILE: true
QUICKLISP_DIST_VERSION: latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run tests
run: |
env LISP=${{ matrix.command }} ./scripts/run-ci-tests.sh