File tree 2 files changed +37
-0
lines changed
2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ push :
5
+ branches : [master]
6
+ pull_request :
7
+ branches : [master]
8
+
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v3
15
+
16
+ - uses : actions/cache@v2
17
+ name : Cache installed packages
18
+ with :
19
+ path : |
20
+ ~/.cache/racket
21
+ ~/.local/share/racket
22
+ key : ${{ runner.os }}-raco-${{ hashFiles('**/info.rkt') }}
23
+
24
+ - name : Set up Racket
25
+ uses : Bogdanp/setup-racket@v1.12
26
+ with :
27
+ architecture : ' x64'
28
+ distribution : ' full'
29
+ variant : ' CS'
30
+ version : ' stable'
31
+
32
+ - name : Install dependencies
33
+ run : raco pkg install --auto --dependencies fail
34
+
35
+ - name : Run tests
36
+ run : raco test .
Original file line number Diff line number Diff line change @@ -6,3 +6,4 @@ compiled/
6
6
/doc /
7
7
scribblings /*
8
8
! scribblings /* .scrbl
9
+ * .kate-swp
You can’t perform that action at this time.
0 commit comments