File tree 2 files changed +50
-14
lines changed
2 files changed +50
-14
lines changed Original file line number Diff line number Diff line change
1
+ name : Tests
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ workflow_dispatch :
10
+
11
+ jobs :
12
+ test-cl-quil :
13
+ name : Test cl-quil
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : actions/checkout@v2
17
+
18
+ - name : Run a multi-line script
19
+ run : |
20
+ sudo apt install sbcl
21
+ make quicklisp
22
+ sudo make install-test-deps
23
+ make test-cl-quil
24
+
25
+ test-quilc :
26
+ name : Test quilc
27
+ runs-on : ubuntu-latest
28
+ steps :
29
+ - uses : actions/checkout@v2
30
+
31
+ - name : Run a multi-line script
32
+ run : |
33
+ sudo apt install sbcl
34
+ make quicklisp
35
+ sudo make install-test-deps
36
+ make test-quilc
37
+
38
+ test-quilt :
39
+ name : Test quilt
40
+ runs-on : ubuntu-latest
41
+ steps :
42
+ - uses : actions/checkout@v2
43
+
44
+ - name : Run a multi-line script
45
+ run : |
46
+ sudo apt install sbcl
47
+ make quicklisp
48
+ sudo make install-test-deps
49
+ make test-quilt
50
+
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments