bracket-backend/.forgejo/workflows/sonar.yaml

24 lines
570 B
YAML
Raw Permalink Normal View History

2025-02-07 15:08:49 +01:00
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
name: SonarQube Scan
jobs:
sonarqube:
name: SonarQube Trigger
2025-02-07 15:10:50 +01:00
runs-on: docker
2025-02-07 15:08:49 +01:00
steps:
- name: Checking out
2025-02-07 15:25:34 +01:00
uses: actions/checkout@v4
2025-02-07 15:08:49 +01:00
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: SonarQube Scan
uses: kitabisa/sonarqube-action@v1.2.1
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_TOKEN }}