-
Notifications
You must be signed in to change notification settings - Fork 151
46 lines (40 loc) · 1.27 KB
/
sonarcloud.yml
File metadata and controls
46 lines (40 loc) · 1.27 KB
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
38
39
40
41
42
43
44
45
46
name: Sonarcloud CI
on:
schedule:
- cron: '0 0 * * 4'
workflow_dispatch: {}
permissions:
contents: read
pull-requests: read
jobs:
java-sonarqube:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
with:
java-version: 17
distribution: 'zulu'
- name: Cache SonarQube Cloud packages
uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Run Checkstyle
run: mvn checkstyle:check
- name: Generate coverage report
run: mvn test jacoco:report
- name: Run SonarCloud Analysis
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn sonar:sonar -Dsonar.projectKey=Adyen_adyen-java-api-library