From 93b7c015bffeace0f6292e4977cf736bf0ae757b Mon Sep 17 00:00:00 2001 From: doraerdelyi <163741439+doraerdelyi@users.noreply.github.com> Date: Thu, 8 May 2025 12:32:46 +0200 Subject: [PATCH] change CI workflow to include only unit tests --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 79688bd..e259984 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -20,6 +20,6 @@ jobs: java-version: '21' distribution: 'temurin' cache: maven - - name: Build and run integration tests with Maven + - name: Build and run unit tests with Maven working-directory: backend/ - run: mvn -B clean verify + run: mvn -B clean package \ No newline at end of file