forked from exercism/racket
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (26 loc) · 838 Bytes
/
ci.yml
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
name: racket / main
on:
push:
branches: [master, main]
pull_request:
workflow_dispatch:
jobs:
ci:
name: Racket ${{ matrix.racket-version }}-${{ matrix.racket-variant }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
racket-variant: ['BC', 'CS']
racket-version: ['8.9', '8.10', '8.11']
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: Bogdanp/setup-racket@0094a9d8bd157633293a2210f373bb542687fa6d
with:
architecture: x64
distribution: minimal
variant: ${{ matrix.racket-variant }}
version: ${{ matrix.racket-version }}
packages: 'rackunit-lib, compiler-lib'
- name: Run exercism/racket ci (runs tests) for all exercises
run: ./bin/check-exercises.sh