Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Update README.md

Update README.md #55

Workflow file for this run

name: Code Analysis
on:
push:
branches:
- 'main'
pull_request:
branches:
- '*'
jobs:
code-analysis:
name: scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
- uses: sonarsource/sonarqube-quality-gate-action@master
timeout-minutes: 5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}