We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 270754f commit 759a2baCopy full SHA for 759a2ba
1 file changed
.github/workflows/maven.yml
@@ -11,14 +11,16 @@ on:
11
12
jobs:
13
build:
14
-
15
runs-on: ubuntu-latest
16
+ strategy:
+ matrix:
17
+ java: [8, 11]
18
+ name: Java ${{ matrix.java }} building ...
19
steps:
20
- uses: actions/checkout@v2
- - name: Set up JDK 1.8
21
+ - name: Set up Java ${{ matrix.java }}
22
uses: actions/setup-java@v1
23
with:
- java-version: 1.8
24
+ java-version: ${{ matrix.java }}
25
- name: Build with Maven
- run: mvn -B package --file pom.xml
26
+ run: mvn -B package --file pom.xml
0 commit comments