diff --git a/.github/workflows/build-on-pr-create.yml b/.github/workflows/build-on-pr-create.yml index 62dca67..f935dda 100644 --- a/.github/workflows/build-on-pr-create.yml +++ b/.github/workflows/build-on-pr-create.yml @@ -30,5 +30,8 @@ jobs: - name: Build with Maven run: mvn --file pom.xml -U clean package - - name: Run Tests - run: mvn --file pom.xml -U clean test -Punit-tests \ No newline at end of file + - name: Run unit tests + run: mvn --file pom.xml -U clean test -Punit-tests + + - name: Run integration tests + run: mvn --file pom.xml -U clean verify -Pintegration-tests \ No newline at end of file