ci: add quality gate
This commit is contained in:
parent
9528fca452
commit
e6e668451a
@ -7,17 +7,19 @@ on:
|
|||||||
|
|
||||||
name: SonarQube Scan
|
name: SonarQube Scan
|
||||||
jobs:
|
jobs:
|
||||||
sonarqube:
|
build:
|
||||||
name: SonarQube Trigger
|
name: Build and analyze
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checking out
|
- uses: actions/checkout@v4
|
||||||
uses: actions/checkout@v4
|
with:
|
||||||
with:
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||||
# Disabling shallow clone is recommended for improving relevancy of reporting
|
- uses: SonarSource/sonarqube-scan-action@v4
|
||||||
fetch-depth: 0
|
env:
|
||||||
- name: SonarQube Scan
|
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
|
||||||
uses: SonarSource/sonarqube-scan-action@v5.1.0 # Ex: v4.1.0, See the latest version at https://github.com/marketplace/actions/official-sonarqube-scan
|
SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }}
|
||||||
env:
|
- uses: SonarSource/sonarqube-quality-gate-action@v1
|
||||||
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
|
timeout-minutes: 5
|
||||||
SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }}
|
env:
|
||||||
|
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
|
Loading…
x
Reference in New Issue
Block a user