Skip to content

Fix missing line space space #3

Fix missing line space space

Fix missing line space space #3

name: SonarQube Analysis
on:
pull_request:
push:
branches: ["**"]
jobs:
build:
name: Run SonarQube Analysis
runs-on: self-hosted
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@v6
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
- name: SonarQube Quality Gate check
id: sonarqube-quality-gate-check
uses: sonarsource/sonarqube-quality-gate-action@v1.2.0
with:
pollingTimeoutSec: 600
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}