File tree 2 files changed +42
-0
lines changed
2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Java CI with Maven
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - name : Checkout source code
14
+ uses : actions/checkout@v2
15
+ - name : Set up JDK 1.8
16
+ uses : actions/setup-java@v1
17
+ with :
18
+ java-version : 1.8
19
+ - name : Build with Maven
20
+ run : mvn -B package --file pom.xml
21
+ working-directory : spring-batch-elasticsearch
Original file line number Diff line number Diff line change
1
+ name : Java CI with Maven
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - name : Checkout source code
14
+ uses : actions/checkout@v2
15
+ - name : Set up JDK 1.8
16
+ uses : actions/setup-java@v1
17
+ with :
18
+ java-version : 1.8
19
+ - name : Build with Maven
20
+ run : mvn -B package --file pom.xml
21
+ working-directory : spring-batch-excel
You can’t perform that action at this time.
0 commit comments