-
Notifications
You must be signed in to change notification settings - Fork 4
33 lines (33 loc) · 933 Bytes
/
build.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: CI
on:
push:
pull_request:
schedule:
- cron: '0 8 * * 6'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
racket-version: ['8.1', 'stable']
racket-variant: ['BC', 'CS']
allow-failure: [false]
include:
- racket-version: 'current'
racket-variant: 'CS'
allow-failure: true
- racket-version: 'current'
racket-variant: 'BC'
allow-failure: true
continue-on-error: ${{ matrix.allow-failure }}
name: Racket ${{ matrix.racket-version }} (${{ matrix.racket-variant }})
steps:
- uses: actions/checkout@v4
- uses: Bogdanp/[email protected]
with:
architecture: x64
version: ${{ matrix.racket-version }}
variant: ${{ matrix.racket-variant }}
- run: raco pkg install --auto --no-docs
- run: raco test -j $(nproc) .