We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10a26f1 commit 3745679Copy full SHA for 3745679
.github/workflows/ci-pipeline.yml
@@ -32,6 +32,12 @@ jobs:
32
restore-keys: |
33
${{ runner.os }}-m2-
34
35
- - name: Build and Run Unit Tests
+ - name: Build and run tests
36
run: |
37
- mvn -B clean verify
+ export MAVEN_OPTS="-Djansi.force=true"
38
+ mvn clean verify sonar:sonar \
39
+ -Dsonar.projectKey=code-quality-testing \
40
+ -Dsonar.organization=peterm85 \
41
+ -Dsonar.host.url=https://sonarcloud.io \
42
+ -Dsonar.login=${{ secrets.SONAR_TOKEN }} \
43
+ -Dsonar.exclusions=**/*Application.java
sonar-project.properties
0 commit comments