-
-
Notifications
You must be signed in to change notification settings - Fork 72
29 lines (26 loc) · 824 Bytes
/
ci.yml
File metadata and controls
29 lines (26 loc) · 824 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
26
27
28
29
name: Build and Test
on: [push, pull_request]
jobs:
build-test:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
racket-variant: ["CS"]
steps:
- uses: actions/checkout@v4.3.0
- uses: Bogdanp/setup-racket@v1.14
with:
architecture: 'x64'
distribution: 'full'
variant: ${{ matrix.racket-variant }}
version: current
sudo: never
dest: '${HOME}/racket'
local_catalogs: $GITHUB_WORKSPACE
- run: raco pkg update -i --no-setup htdp-lib htdp-doc htdp
- name: Install htdp-test (depends on htdp-lib)
run: raco pkg install --auto -i --skip-installed --no-setup htdp-test
- run: raco setup --check-pkg-deps --pkgs htdp-lib htdp-doc htdp-test
- name: Run tests
run: xvfb-run raco test htdp-test