File tree 1 file changed +30
-0
lines changed
1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will build all Java packages in this project with Maven (Java 8)
2
+
3
+ name : Java CI with Maven
4
+
5
+ on :
6
+ push :
7
+ branches : [ master ]
8
+ pull_request :
9
+ branches : [ '*' ]
10
+
11
+ jobs :
12
+ build :
13
+
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - name : Set up JDK 1.8
19
+ uses : actions/setup-java@v1
20
+ with :
21
+ java-version : 1.8
22
+
23
+ - name : Build core with Maven
24
+ run : mvn -B package --file aws-lambda-java-core/pom.xml
25
+ - name : Build events with Maven
26
+ run : mvn -B package --file aws-lambda-java-events/pom.xml
27
+ - name : Build log4j with Maven
28
+ run : mvn -B package --file aws-lambda-java-log4j/pom.xml
29
+ - name : Build log4j2 with Maven
30
+ run : mvn -B package --file aws-lambda-java-log4j2/pom.xml
You can’t perform that action at this time.
0 commit comments