Add .forgejo/workflows/sonar.yml
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 37s

This commit is contained in:
SevenOfAces 2025-03-06 03:07:20 +00:00
parent 29f08e34e3
commit cadbda5283

View file

@ -0,0 +1,25 @@
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
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 }}