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 aba5bea commit 943981dCopy full SHA for 943981d
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ push:
8
9
10
11
+jobs:
12
+ build:
13
+ strategy:
14
+ matrix:
15
+ java: [ '11', '15' ]
16
+ os: [ 'ubuntu-20.04' ]
17
+ runs-on: ${{ matrix.os }}
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - name: Set up JDK
21
+ uses: actions/setup-java@v1
22
+ with:
23
+ java-version: ${{ matrix.java }}
24
+ - name: print Java version
25
+ run: java -version
26
+ - uses: actions/cache@v2
27
28
+ path: ~/.m2/repository
29
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
30
+ restore-keys: |
31
+ ${{ runner.os }}-maven-
32
+ - name: Build
33
+ run: mvn --no-transfer-progress -B clean package
.travis.yml
0 commit comments