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 360380d commit 687c36cCopy full SHA for 687c36c
.github/workflows/maven.yml
@@ -16,15 +16,19 @@ on:
16
17
jobs:
18
build:
19
-
20
runs-on: ubuntu-latest
21
+ strategy:
22
+ matrix:
23
+ java_version: [ '8', '11', '17', '21' ]
24
+ fail-fast: false
25
+
26
steps:
27
- uses: actions/checkout@v4
- - name: Set up JDK 8
28
+ - name: Set up JDK
29
uses: actions/setup-java@v4
30
with:
- java-version: '8'
31
+ java-version: ${{ matrix.java_version }}
32
distribution: 'temurin'
33
cache: maven
34
- name: Build with Maven
0 commit comments