We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa1cc9c commit 8379313Copy full SHA for 8379313
.github/workflows/tests.yaml
@@ -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