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