From d9fda2efd12b84e3e621a1172ea0ba8e5543d048 Mon Sep 17 00:00:00 2001 From: Marco Collovati Date: Fri, 18 Sep 2026 15:20:05 +0000 Subject: [PATCH] ci: suppress maven transfer progress in validation workflow --- .github/workflows/validation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 9a062cbf..91fe775a 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -87,7 +87,7 @@ jobs: rm -rf ~/.m2/repository - name: Build with Maven and Generate Javadoc - run: mvn clean install -DskipTests -Djavadocs -B + run: mvn clean install -DskipTests -Djavadocs -B -ntp unit-tests: name: Unit Tests @@ -115,7 +115,7 @@ jobs: key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-${{ github.run_id }} - name: Run unit tests - run: mvn test -B + run: mvn test -B -ntp - name: Upload test results if: always()