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 c88d109 commit 8d04be4Copy full SHA for 8d04be4
.github/workflows/ci.yml
@@ -13,12 +13,15 @@ jobs:
13
build:
14
15
runs-on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ java: [8, 11]
19
20
steps:
- - uses: actions/checkout@v2
- - name: Set up JDK 1.8
- uses: actions/setup-java@v1
21
- with:
22
- java-version: 1.8
23
- - name: Build with Maven
24
- run: mvn -B package -P no-integration-tests --file pom.xml
+ - uses: actions/checkout@v2
+ - name: Set up JDK
+ uses: actions/setup-java@v1
+ with:
25
+ java-version: ${{ matrix.java }}
26
+ - name: Build with Maven
27
+ run: mvn -B package -P no-integration-tests --file pom.xml
0 commit comments