Added Sonar config
Some checks failed
SonarQube Scan / SonarQube Trigger (pull_request) Failing after 11s

This commit is contained in:
2026-01-22 20:09:33 +01:00
parent 6e5915b8cb
commit 32964ae1a1
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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: SonarSource/sonarqube-scan-action@v7.0.0 # Ex: v4.1.0 or sha1, See the latest version at https://github.com/marketplace/actions/official-sonarqube-scan
env:
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}