Revert "GitHub Actions: Skip automated tests when running SonarCloud"

This reverts commit 59f4adfc6f.

We need the tests to generate the test coverage report. Didn't think of that.
This commit is contained in:
Christian Koop 2022-11-26 15:36:29 +01:00
parent e2194e0dec
commit 00789921a3
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3

View File

@ -36,9 +36,7 @@ jobs:
- name: Analyze project - name: Analyze project
if: ${{ env.SONAR_TOKEN != null }} if: ${{ env.SONAR_TOKEN != null }}
run: > run: >
mvn \ mvn -B \
-B \
-DskipTests \
verify \ verify \
org.sonarsource.scanner.maven:sonar-maven-plugin:sonar \ org.sonarsource.scanner.maven:sonar-maven-plugin:sonar \
"-Dsonar.projectKey=$SONAR_PROJECT_KEY" "-Dsonar.projectKey=$SONAR_PROJECT_KEY"