Files
medassist-ng/.gitea/workflows/sonarqube.yml
T
Patrick 5a4a72e1f4 new file: .gitea/workflows/sonarqube.yml
modified:   .vscode/settings.json
2026-05-25 12:48:55 -04:00

20 lines
480 B
YAML

on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarqube:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Recommended for better reporting relevancy
- name: SonarQube Scan
uses: kitabisa/sonarqube-action@v1.2.0
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_TOKEN }}