Skip to content

chore(sonar): Add sonar analysis #1

chore(sonar): Add sonar analysis

chore(sonar): Add sonar analysis #1

Workflow file for this run

name: SonarCloud
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
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: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Build
uses: gradle/[email protected]
env:
DETEKT_IGNORE_FAILURES: true
with:
arguments: build detekt -x test
- name: Test
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 10
command: ./gradlew test jacocoTestReport
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}