We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 541e1c0 commit c9fca86Copy full SHA for c9fca86
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,18 @@
1
+name: Java CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Set up JDK 11
12
+ uses: actions/setup-java@v2
13
+ with:
14
+ java-version: '11'
15
+ distribution: 'adopt'
16
+ cache: maven
17
+ - name: Build with Maven
18
+ run: mvn --batch-mode --update-snapshots verify
.travis.yml
0 commit comments