Skip to content

Commit 8379313

Browse files
Use GitHub Actions to run math-test (#108)
Co-authored-by: Pavel Panchekha <[email protected]>
1 parent aa1cc9c commit 8379313

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Racket unit tests
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
name: "Build and test on Racket"
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: "Install MPFR"
10+
run: sudo apt-get install -y libmpfr6 libmpfr-dev
11+
- uses: Bogdanp/[email protected]
12+
with:
13+
architecture: x64
14+
distribution: full
15+
variant: CS
16+
version: current
17+
- uses: actions/checkout@master
18+
- run: sudo raco pkg install --scope installation eli-tester
19+
- run: sudo raco pkg update --no-setup --name math-lib --link --batch --auto math-lib/
20+
- run: sudo raco setup math
21+
- run: sudo raco pkg install --link --batch --auto math-test/
22+
- run: raco test --drdr math-test/

0 commit comments

Comments
 (0)