-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (46 loc) · 1.19 KB
/
sonar.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: SonarCloud
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: sonar-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Initialization
uses: ./.github/actions/init
with:
jdk: 17
- name: Check code style
uses: gradle/[email protected]
env:
DETEKT_IGNORE_FAILURES: true
with:
arguments: detekt
- name: Build
uses: gradle/[email protected]
with:
arguments: assemble
- name: Test
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 10
command: ./gradlew test
- name: Generate test report
uses: gradle/[email protected]
with:
arguments: koverXmlReport
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}