name: Run SonarQube Scan on: push: branches: - develop # pull_request: # types: [opened, synchronize, reopened] jobs: sonarqube: name: SonarQube runs-on: arc-linux-latest steps: - uses: actions/checkout@v6 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: SonarQube Scan uses: SonarSource/sonarqube-scan-action@v7 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}