-
Notifications
You must be signed in to change notification settings - Fork 2
59 lines (56 loc) · 1.55 KB
/
test.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: CI
on:
push:
pull_request:
jobs:
ubuntu:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
racket_version:
# Although today we need super-new versions of Racket and
# drracket-tool-text-lib (unfortunately), someday this
# matrix will grow to add a `stable` item, at least.
- 'stable'
- 'current' # our minimum supported version
name: Ubuntu Racket ${{ matrix.racket_version }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Racket
uses: Bogdanp/setup-racket@v1.11
with:
architecture: 'x64'
distribution: 'full'
version: ${{ matrix.racket_version }}
- name: Install Package
run: make install
- name: Check Deps
run: make check-deps
- name: Run Tests
run: make test
windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
racket_version:
- 'stable'
- 'current' # our minimum supported version
name: Windows Racket ${{ matrix.racket_version }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Racket
uses: Bogdanp/setup-racket@v1.11
with:
architecture: 'x64'
distribution: 'full'
version: ${{ matrix.racket_version }}
- name: Install Package
run: make install
- name: Check Deps
run: make check-deps
- name: Run Tests
run: make test