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 1d25f8a commit 6b947acCopy full SHA for 6b947ac
.github/workflows/build.yml
@@ -0,0 +1,22 @@
1
+name: Build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ java: [8, 11, 14]
11
+ os: [ubuntu-latest, macos-latest, windows-latest]
12
+ name: Java ${{ matrix.java }}
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ with:
16
+ submodules: true
17
+ - name: Set up java
18
+ uses: actions/setup-java@v1
19
20
+ java-version: ${{ matrix.java }}
21
+ - name: Build with Maven
22
+ run: mvn -B package
0 commit comments