We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f569d12 + 465cdac commit 59a790eCopy full SHA for 59a790e
1 file changed
.github/workflows/workflow.yml
@@ -0,0 +1,27 @@
1
+name: Java CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - develop
7
8
9
+jobs:
10
+ build:
11
+ name: Build on Java ${{ matrix.java_version }} and ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ java_version: ['1.8', '9.0.x']
15
+ os: [ubuntu-latest, windows-latest, macOS-latest]
16
17
+ runs-on: ${{ matrix.os }}
18
19
+ steps:
20
+ - uses: actions/checkout@v1
21
+ - name: Set up JDK ${{ matrix.java_version }}
22
+ uses: actions/setup-java@v1
23
+ with:
24
+ java-version: ${{ matrix.java_version }}
25
+ architecture: x64
26
+ - name: Build with Maven
27
+ run: mvn compile --file pom.xml
0 commit comments