Commit d0dcf2b 1 parent 92deb2a commit d0dcf2b Copy full SHA for d0dcf2b
File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 3
3
pull_request :
4
4
5
5
jobs :
6
+ e2e :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v3
10
+ - uses : vdaas/vald-client-ci/.github/actions/e2e@main
11
+ with :
12
+ client_type : java
13
+
6
14
publish :
7
15
runs-on : ubuntu-latest
8
16
steps :
9
- - uses : actions/checkout@v1
17
+ - uses : actions/checkout@v3
10
18
- name : prepare for publish
11
19
run : |
12
20
./gradlew clean
Original file line number Diff line number Diff line change @@ -174,3 +174,13 @@ $(GOPATH)/src/github.com/envoyproxy/protoc-gen-validate:
174
174
--depth 1 \
175
175
https://github.com/envoyproxy/protoc-gen-validate \
176
176
$(GOPATH ) /src/github.com/envoyproxy/protoc-gen-validate
177
+
178
+ TEST_DATASET_PATH = wordvecs1000.json
179
+
180
+ .PHONY : test
181
+ # # Execute test
182
+ test : $(TEST_DATASET_PATH )
183
+ ./gradlew test
184
+
185
+ $(TEST_DATASET_PATH ) :
186
+ curl -L https://raw.githubusercontent.com/rinx/word2vecjson/master/data/wordvecs1000.json -o $(TEST_DATASET_PATH )
You can’t perform that action at this time.
0 commit comments