schiphol/.gitea/workflows/sonar.yaml
Peter Wieringa ee58f14020
All checks were successful
SonarQube Scan / sonarqube (pull_request) Successful in 52s
Merge remote-tracking branch 'origin/main' into new/initial_commit
2025-12-28 18:36:07 +01:00

25 lines
463 B
YAML

name: SonarQube Scan
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
sonarqube:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v6
env:
SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}