From 4b924d6d22b19b8190ffadf4e7a634c9208f11aa Mon Sep 17 00:00:00 2001 From: Ricardo Costa Date: Sat, 14 Feb 2026 17:05:54 +0000 Subject: [PATCH] Skip Tests in Maven Build in CI --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index c34294ee..5a1b152d 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -48,7 +48,7 @@ jobs: # Build the project (compiles and packages the code) - name: Build the project - run: mvn -B clean install --file pom.xml --batch-mode --fail-fast -Dgpg.skip=true -Dmaven.deploy.skip=true + run: mvn -B clean install -DskipTests --file pom.xml --batch-mode --fail-fast -Dgpg.skip=true -Dmaven.deploy.skip=true # Run tests - name: Run tests