2024-11-27 10:34:59 -08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
|
|
|
|
name: SonarQube Scan
|
|
|
|
jobs:
|
|
|
|
sonarqube:
|
|
|
|
name: SonarQube Trigger
|
|
|
|
runs-on: ubuntu-latest
|
2024-11-27 18:36:48 +00:00
|
|
|
if: ${{ !contains ('DotnetTestExe', format('{0}_{1}', 'project', 'name')) }}
|
2024-11-27 10:34:59 -08:00
|
|
|
steps:
|
|
|
|
- name: Checking out
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
# Disabling shallow clone is recommended for improving relevancy of reporting
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: SonarQube Scan
|
|
|
|
uses: sonarsource/sonarqube-scan-action@master
|
|
|
|
env:
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
|
|
|
|
SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }}
|
|
|
|
with:
|
|
|
|
args: >
|
2024-11-27 18:36:48 +00:00
|
|
|
-Dsonar.projectKey=DotnetTestExe
|