You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2020/03/25 12:07:49 UTC

[camel-k-runtime] branch master updated: Cleanup pr-validate GitHub Action

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


The following commit(s) were added to refs/heads/master by this push:
     new 207d8c7  Cleanup pr-validate GitHub Action
207d8c7 is described below

commit 207d8c7f7ea4761376a595effe2f3975a149cfad
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Wed Mar 25 13:02:30 2020 +0100

    Cleanup pr-validate GitHub Action
---
 .github/workflows/pr-validate.yml | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/pr-validate.yml b/.github/workflows/pr-validate.yml
index 421cd77..f85d75d 100644
--- a/.github/workflows/pr-validate.yml
+++ b/.github/workflows/pr-validate.yml
@@ -16,9 +16,9 @@
 #
 name: Validate PR
 
-on: 
+on:
   pull_request:
-    branches: 
+    branches:
       - master
 jobs:
   build:
@@ -30,4 +30,8 @@ jobs:
       with:
         java-version: openjdk11
     - name: mvn package
-      run: ./mvnw -fae -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -Dcheckstyle.failOnViolation=true clean package -Psourcecheck,license -DskipTests
+      run: |
+        ./mvnw -fae -B -ntp clean package \
+          -Dcheckstyle.failOnViolation=true \
+          -DskipTests \
+          -Psourcecheck,license