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 5ff4c72 commit 248fb0cCopy full SHA for 248fb0c
.github/workflows/maven.yml
@@ -0,0 +1,20 @@
1
+name: Java CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ build:
10
11
+ runs-on: windows-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v1
15
+ - name: Set up JDK 1.8
16
+ uses: actions/setup-java@v1
17
+ with:
18
+ java-version: 1.8
19
+ - name: Build with Maven
20
+ run: mvn -B install --file pom.xml
0 commit comments