File tree Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 2.0
1
2
3
+ jobs :
4
+ test-larky :
5
+ docker :
6
+ - image : cimg/openjdk:17.0.1
7
+ steps :
8
+ - checkout
9
+ - run : make test-larky
10
+
11
+ workflows :
12
+ version : 2
13
+
14
+ test-larky :
15
+ jobs :
16
+ - test-larky
Original file line number Diff line number Diff line change 4
4
** /node_modules
5
5
** /results.txt
6
6
content-by-language /node /package * .json
7
+ tmp /*
Original file line number Diff line number Diff line change
1
+ .PHONY : test-larky
2
+
3
+ ./tmp/starlarky :
4
+ git clone git@github.com:verygoodsecurity/starlarky.git ./tmp/starlarky
5
+
6
+ test-larky : ./tmp/starlarky
7
+ rm -f tmp/starlarky/larky/src/test/resources/quick_tests/** .star
8
+ cp $$(find ./integrations/larky/ | grep .star ) ./tmp/starlarky/larky/src/test/resources/quick_tests/
9
+ cd ./tmp/starlarky; mvnw -Dtest=' LarkyQuickTests*' test -pl larky
You can’t perform that action at this time.
0 commit comments