We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24a20c1 commit 417db1cCopy full SHA for 417db1c
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,19 @@
1
+name: Build
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+ types: [opened, synchronize, reopened]
8
+jobs:
9
+ sonarqube:
10
+ name: SonarQube
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
16
+ - name: SonarQube Scan
17
+ uses: SonarSource/sonarqube-scan-action@v4
18
+ env:
19
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
0 commit comments