Files
test-sonarqube/.gitea/workflows/sonarqube.yaml
joker d91c800460
Some checks failed
SonarQube Analysis / sonarqube (push) Failing after 46s
Add SonarQube workflow and test file
2026-01-03 20:16:56 +00:00

21 lines
427 B
YAML

name: SonarQube Analysis
on:
push:
branches: [main, master, develop]
pull_request:
jobs:
sonarqube:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}