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 8fc63e4 commit 3dd693fCopy full SHA for 3dd693f
.github/workflows/pull-request.yml
@@ -24,3 +24,15 @@ jobs:
24
restore-keys: ${{ runner.os }}-m2
25
- name: Build with Maven
26
run: mvn --batch-mode --update-snapshots verify
27
+ analyze:
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: actions/checkout@v2
31
+ - name: Setup java
32
+ uses: actions/setup-java@v2
33
+ with:
34
+ java-version: '8'
35
+ - name: Analyze with SonarCloud
36
+ run: mvn -B clean verify -Psonar -Dsonar.login=${{ secrets.SONAR_TOKEN }}
37
+ env:
38
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments