Files
testsonarqube/.gitea/workflows/sonar.yml
Namu 7ee43bcc43
All checks were successful
build / build (push) Successful in 30s
add sonarqube job for testing if it works
2025-09-13 19:12:00 +02:00

22 lines
470 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.0
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_TOKEN }}