ci: add Sonarqube pipeline
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 14s
release / Release (push) Successful in 1m33s

This commit is contained in:
Oliver Weyhmüller 2025-01-05 16:49:02 +01:00
parent 8dc22549ed
commit 90c156e791
Signed by: oliver
GPG key ID: 5286794099F934A3

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:
fetch-depth: 0
- name: SonarQube Scan
uses: https://github.com/kitabisa/sonarqube-action@v1.2.1
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_TOKEN }}