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

olamy pushed a commit to branch gh-actions
in repository https://gitbox.apache.org/repos/asf/commons-io.git

commit 172d2694db99daf9e2545ee4fb1f931cb99ec0e5
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Thu Jul 16 10:01:35 2020 +1000

    Update maven.yml
---
 .github/workflows/maven.yml | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index f77cf26..277f126 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -20,10 +20,13 @@ on: [push]
 jobs:
   build:
 
-    runs-on: ubuntu-latest
     strategy:
       matrix:
-        java: [ 8, 11, 14 ]
+        os: [ubuntu-latest, windows-latest]
+        java: [8, 11, 14]
+      fail-fast: false
+
+    runs-on: ${{ matrix.os }}
         
     steps:
     - uses: actions/checkout@v1
@@ -32,4 +35,4 @@ jobs:
       with:
         java-version: ${{ matrix.java }}
     - name: Build with Maven
-      run: mvn -V package --file pom.xml
+      run: mvn -V -Dgpg.skip -Prelease --file pom.xml

Reply via email to