-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 969 Bytes
/
sonarcloud.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: SonarCloud analysis
on:
push:
branches: [ main ]
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarcloud:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up cache for ~./m2/repository
uses: actions/cache@v4.1.2
with:
path: ~/.m2/repository
key: pit-stryker-dashboard-reporter-${{ hashFiles('**/pom.xml') }}
- name: Set up JDK
uses: actions/setup-java@v4.5.0
with:
java-version: 17
distribution: 'adopt'
check-latest: true
- name: SonarCloud Scan
run: |
mvn -B -Dsonar.login=$SONAR_TOKEN --no-transfer-progress verify sonar:sonar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}