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 dbe638c commit 22a5755Copy full SHA for 22a5755
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches:
5
+ - '*'
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
+jobs:
12
+ ci:
13
+ runs-on: ${{ matrix.os }}
14
+ strategy:
15
+ matrix:
16
+ os: [ ubuntu-latest, windows-latest, macos-latest ]
17
+ java: [ 11, 17 ]
18
+ steps:
19
+ - name: Checkout
20
+ uses: actions/checkout@v2
21
+ - name: Set up JDK ${{ matrix.java }}
22
+ uses: actions/setup-java@v1
23
+ with:
24
+ java-version: ${{ matrix.java }}
25
+ - name: Cache local Maven repository
26
+ uses: actions/cache@v2
27
28
+ path: ~/.m2/repository
29
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
30
+ restore-keys: |
31
+ ${{ runner.os }}-maven-
32
+ - name: Build with Maven
33
+ run: mvn -B verify
0 commit comments