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