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 4fb44bb commit e95211cCopy full SHA for e95211c
.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
13
+ test:
14
15
+ needs: verify
16
17
+ runs-on: ubuntu-latest
18
19
+ strategy:
20
+ fail-fast: false
21
+ matrix:
22
+ java-version:
23
+ - 8
24
+ - 11
25
+ - 14
26
27
+ steps:
28
+ - uses: actions/checkout@v1
29
+ - name: Set up JDK
30
+ uses: actions/setup-java@v1
31
+ with:
32
+ java-version: ${{ matrix.java-version }}
33
+ - name: Info
34
+ run: mvn -version
35
+ - name: Test
36
+ run: mvn -e --no-transfer-progress test
0 commit comments