dependencies/.gitea/workflows/sonarqube.yaml
Oliver Weyhmueller 73f77553c3
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 10s
release / Release (push) Has been cancelled
ci: add Sonarqube pipeline
2025-01-05 16:50:31 +01:00

23 lines
493 B
YAML

---
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: kitabisa/sonarqube-action@v1.2.1
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_TOKEN }}