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

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git


The following commit(s) were added to refs/heads/master by this push:
     new e640f4b  Hopefully, last minor edit.
e640f4b is described below

commit e640f4b5725b8bbac79c38211944482ac147d5db
Author: Lee Rhodes <[email protected]>
AuthorDate: Tue Feb 2 12:28:04 2021 -0800

    Hopefully, last minor edit.
---
 .github/workflows/maven.yml | 26 +++++++++++++++++---------
 1 file changed, 17 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index b02d9fd..698d6c6 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -1,9 +1,8 @@
-name: Java CI with Maven, Coveralls
+name: Java Test Coverage with Maven, Coveralls
 
 on:
-    push:
-        branches: [ master ]
     pull_request:
+    push:
         branches: [ master ]
 
 env:
@@ -24,10 +23,9 @@ jobs:
         - name: Cache local Maven repository
           uses: actions/cache@v2
           with:
-            path: ~/.m2/repository
-            key: build-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
-            restore-keys: |
-              build-${{ runner.os }}-maven-
+              path: ~/.m2/repository
+              key: build-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+              restore-keys: build-${{ runner.os }}-maven-
 
         - name: Install JDK
           uses: AdoptOpenJDK/install-jdk@v1
@@ -38,8 +36,18 @@ jobs:
               targets: 'JDK_8;JAVA_HOME'
 
         - name: Install Dependencies
-          run: mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true 
-Dgpg.skip=true -B -V -q --toolchains .github/workflows/.toolchains.xml
+          run: >
+              mvn clean install -B -V -q
+              -DskipTests=true
+              -Dmaven.javadoc.skip=true
+              -Dgpg.skip=true
+              --toolchains .github/workflows/.toolchains.xml
 
         - name: Test & Report
           if: ${{ success() }}
-          run: mvn verify coveralls:report 
-Dcoveralls-repo-token=${repo_token} -Dmaven.javadoc.skip=true -Dgpg.skip=true 
-B -V -q --toolchains .github/workflows/.toolchains.xml
+          run: >
+              mvn verify coveralls:report -B -V -q
+              -Dcoveralls-repo-token=${repo_token}
+              -Dmaven.javadoc.skip=true
+              -Dgpg.skip=true
+              --toolchains .github/workflows/.toolchains.xml


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to