File tree 2 files changed +21
-2
lines changed
2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Continuous Integration
2
+
3
+ on : [pull_request, push]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+ - name : install chez scheme
11
+ run : sudo apt install chezscheme
12
+ - name : run tests
13
+ run : |
14
+ cd ../
15
+ ln -s $(pwd)/chez-srfi $(pwd)/srfi
16
+ cd srfi
17
+ scheme-script link-dirs.chezscheme.sps
18
+ cd tests
19
+ sh test_all.sh ../../
Original file line number Diff line number Diff line change @@ -18,11 +18,12 @@ set -o errexit
18
18
set -o xtrace
19
19
20
20
# Set libdirs to library under test only.
21
- CHEZSCHEMELIBDIRS=" $1 "
21
+ export CHEZSCHEMELIBDIRS=" $1 "
22
22
23
23
SCHEME=scheme-script
24
24
25
25
tests='
26
+ testing.sps
26
27
and-let%2a.sps
27
28
char-sets.sps
28
29
compare-procedures.sps
@@ -41,7 +42,6 @@ rec.sps
41
42
records.sps
42
43
regexp.sps
43
44
tables-test.sps
44
- testing.sps
45
45
vectors.sps
46
46
'
47
47
You can’t perform that action at this time.
0 commit comments