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.
2 parents 34482c6 + 8c2ca19 commit 10994caCopy full SHA for 10994ca
.github/workflows/maven.yml renamed to .github/workflows/ci.yml
@@ -6,7 +6,7 @@
6
# separate terms of service, privacy policy, and support
7
# documentation.
8
9
-name: Java CI with Maven
+name: CI
10
11
on:
12
push:
@@ -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
- - name: Set up JDK 11
28
+ - name: Set up JDK
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