We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 315123a commit 0477ba6Copy full SHA for 0477ba6
.github/workflows/maven.yml
@@ -0,0 +1,36 @@
1
+name: Java CI
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ push:
8
9
10
11
+jobs:
12
+ package:
13
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v1
18
+ - name: Set up JDK 1.8
19
+ uses: actions/setup-java@v1
20
+ with:
21
+ java-version: 1.8
22
+ - name: Package
23
+ run: mvn --no-transfer-progress -DskipTests=true package
24
25
+ test:
26
27
28
29
30
31
32
33
34
35
+ - name: Test
36
+ run: mvn --no-transfer-progress test
0 commit comments