add sonar workflow
Some checks failed
CI / linter (ubuntu-latest, 3.9) (push) Failing after 27s
CI / tests_linux (ubuntu-latest, 3.9) (push) Has been skipped
Rename the project from template / rename-project (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Failing after 17s

This commit is contained in:
Simon Diesenreiter 2024-11-10 08:59:22 -08:00
parent 0426e0c42c
commit 7e327e335d

View File

@ -0,0 +1,23 @@
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
name: SonarQube Scan
jobs:
sonarqube:
name: SonarQube Trigger
runs-on: ubuntu-latest
steps:
- name: Checking out
uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: SonarQube Scan
uses: kitabisa/sonarqube-action@v1.2.0
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_TOKEN }}