-
Notifications
You must be signed in to change notification settings - Fork 1
24 lines (24 loc) · 891 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
on: [push, pull_request]
name: CI
jobs:
build:
name: "Build on Racket '${{ matrix.racket-version }}' (${{ matrix.racket-variant }})"
runs-on: ubuntu-latest
strategy:
matrix:
racket-version: ["stable", "current"]
racket-variant: ["BC", "CS"]
steps:
- uses: actions/checkout@v3
- uses: Bogdanp/[email protected]
with:
architecture: x64
distribution: full
variant: ${{ matrix.racket-variant }}
version: ${{ matrix.racket-version }}
- name: Installing pretty-expressive and its dependencies
run: raco pkg install --no-docs --auto --name pretty-expressive
- name: Compiling pretty-expressive and building its docs
run: raco setup --check-pkg-deps --unused-pkg-deps pretty-expressive
- name: Testing pretty-expressive
run: raco test -p pretty-expressive