We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a76bafa commit 999d2f0Copy full SHA for 999d2f0
.github/workflows/sonarqube.yml
@@ -0,0 +1,18 @@
1
+name: SonarQube Analysis
2
+on:
3
+ push:
4
+ branches: [ "main" ]
5
+ pull_request:
6
7
+jobs:
8
+ sonarqube:
9
+ name: SonarQube
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ with:
14
+ fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
15
+ - name: SonarQube Scan
16
+ uses: SonarSource/sonarqube-scan-action@v6
17
+ env:
18
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
0 commit comments