We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb8a86b commit 9c96e83Copy full SHA for 9c96e83
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,20 @@
1
+name: CI
2
+on: [push, pull_request]
3
+jobs:
4
+ build:
5
+ name: Build
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ jdk: [ 21 ]
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: Set up JDK ${{ matrix.jdk }}
14
+ uses: actions/setup-java@v4
15
+ with:
16
+ java-version: ${{ matrix.jdk }}
17
+ distribution: liberica
18
+ cache: maven
19
+ - name: Build with Maven
20
+ run: mvn -V -B package
0 commit comments