You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/03/12 06:49:02 UTC

[isis-app-simpleapp] branch jdo-SNAPSHOT updated: adds matrix support

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

danhaywood pushed a commit to branch jdo-SNAPSHOT
in repository https://gitbox.apache.org/repos/asf/isis-app-simpleapp.git


The following commit(s) were added to refs/heads/jdo-SNAPSHOT by this push:
     new 95385d8  adds matrix support
95385d8 is described below

commit 95385d8372e33565389f23e113e27952e03ce79e
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Fri Mar 12 06:48:52 2021 +0000

    adds matrix support
---
 .github/workflows/mavenJdk8.yml | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/mavenJdk8.yml b/.github/workflows/mavenJdk8.yml
index 8aa384d..c190a0b 100644
--- a/.github/workflows/mavenJdk8.yml
+++ b/.github/workflows/mavenJdk8.yml
@@ -1,4 +1,4 @@
-name: Build w/ Maven + Jdk 8
+name: Build and Test
 
 on:
   push:
@@ -19,14 +19,20 @@ jobs:
     name: Build, Test
     runs-on: ubuntu-latest
 
+    strategy:
+      matrix:
+        java-version:
+          - 1.8
+          - 15
+
     steps:
     - name: Checkout repo
       uses: actions/checkout@v2.3.3
 
-    - name: Set up JDK 1.8
+    - name: Set up JDK ${{ matrix.java-version }}
       uses: actions/setup-java@v1
       with:
-        java-version: 1.8
+        java-version: ${{ matrix.java-version }}
 
     - name: Print Maven Version
       run: mvn --version