From a2bd779c5db1a75dd5b44c907f37e85fa5406bce Mon Sep 17 00:00:00 2001 From: Daniel Kmiecik Date: Wed, 8 Oct 2025 12:13:35 +0200 Subject: [PATCH] fix: revert to verify in workflow --- .github/workflows/maven-master-pulls.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven-master-pulls.yml b/.github/workflows/maven-master-pulls.yml index b658a894585..d3ad606ea4b 100644 --- a/.github/workflows/maven-master-pulls.yml +++ b/.github/workflows/maven-master-pulls.yml @@ -30,7 +30,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Build with Maven - run: mvn -B -U install --file pom.xml + run: mvn -B -U verify --file pom.xml - name: Check local context run: | @@ -80,4 +80,4 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Build with Maven - run: mvn -B -U clean install -DskipTests -Dmaven.test.skip=true -Dmaven.site.skip=true -Dmaven.javadoc.skip=true -Psamples-java8 --file pom.xml \ No newline at end of file + run: mvn -B -U clean verify -DskipTests -Dmaven.test.skip=true -Dmaven.site.skip=true -Dmaven.javadoc.skip=true -Psamples-java8 --file pom.xml \ No newline at end of file