We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc2f84a commit 791205aCopy full SHA for 791205a
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ push:
8
9
10
11
+jobs:
12
+ build:
13
+ strategy:
14
+ matrix:
15
+ java: [ '8', '16' ]
16
+ os: [ 'ubuntu-latest' ]
17
+ runs-on: ${{ matrix.os }}
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - name: Set up JDK
21
+ uses: actions/setup-java@v2
22
+ with:
23
+ java-version: ${{ matrix.java }}
24
+ distribution: 'zulu'
25
+ - name: Maven build
26
+ run: mvn --no-transfer-progress -B clean test
0 commit comments