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 ea88237 commit 09419d1Copy full SHA for 09419d1
.github/workflows/sonarcloud.yml
@@ -0,0 +1,21 @@
1
+name: "Sonarcloud Analysis"
2
+
3
+on: ["pull_request"]
4
5
+jobs:
6
+ sonarcloud-analysis:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@v4
13
+ with:
14
+ # Disabling shallow clone to improve relevancy of SonarCloud reporting
15
+ fetch-depth: 0
16
17
+ - name: SonarCloud integration
18
+ uses: sonarsource/sonarcloud-github-action@master
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
0 commit comments