You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2021/01/08 13:04:37 UTC

[maven-surefire] branch master updated: ci: JDK 8, JDK 11, JDK 15

This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/master by this push:
     new 02d4381  ci: JDK 8, JDK 11, JDK 15
02d4381 is described below

commit 02d43817167270d748ea9ee3c4fb2f8afe7f96ed
Author: Sean C. Sullivan <gi...@seansullivan.com>
AuthorDate: Wed Dec 23 12:43:31 2020 -0800

    ci: JDK 8, JDK 11, JDK 15
---
 .github/workflows/maven.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 2058b40..b393487 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -31,6 +31,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-latest, macOS-latest]
+        java: [8, 11, 15]
       fail-fast: false
 
     runs-on: ${{ matrix.os }}
@@ -39,10 +40,10 @@ jobs:
       - name: Checkout
         uses: actions/checkout@v1
 
-      - name: Set up JDK 14
+      - name: Set up JDK ${{ matrix.java }}
         uses: actions/setup-java@v1
         with:
-          java-version: 14
+          java-version: ${{ matrix.java }}
 
       - name: Build with Maven
         run: mvn clean install -e -B -V -nsu --no-transfer-progress -P run-its