-
-
Notifications
You must be signed in to change notification settings - Fork 46
25 lines (25 loc) · 853 Bytes
/
ci.yml
File metadata and controls
25 lines (25 loc) · 853 Bytes
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
on: [push, pull_request]
name: CI
jobs:
build:
name: "Build on Racket '${{ matrix.racket-version }}' (${{ matrix.racket-variant }})"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
racket-version: ["8.0", "8.1", "current"]
racket-variant: ["BC", "CS"]
exclude:
- racket-variant: BC
racket-version: current
steps:
- uses: actions/checkout@master
- uses: Bogdanp/setup-racket@v1.14
with:
architecture: x64
distribution: full
variant: ${{ matrix.racket-variant }}
version: ${{ matrix.racket-version }}
- run: sudo raco pkg update --name web-server-lib --link --batch --auto web-server-lib/
- run: sudo raco pkg install --batch --auto web-server-test/
- run: raco test --drdr web-server-test/