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 26223c1 commit 7203dc3Copy full SHA for 7203dc3
.github/workflows/sonar.yml
@@ -0,0 +1,19 @@
1
+name: SonarQube Scan
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ sonar:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: SonarQube Scan
12
+ uses: SonarSource/sonarqube-scan-action@v2
13
+ env:
14
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
15
+ SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
16
+ with:
17
+ args: >
18
+ -Dsonar.projectKey=${{ github.event.repository.name }}
19
+ -Dsonar.projectName=${{ github.event.repository.name }}
0 commit comments