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