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 50d790a commit fc017c9Copy full SHA for fc017c9
.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@v5
18
+ env:
19
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
0 commit comments