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 cd34134 commit 389a18fCopy full SHA for 389a18f
.github/workflows/code-quality.yml
@@ -15,4 +15,16 @@ jobs:
15
- name: Checkout
16
uses: actions/checkout@v4
17
- name: Lint
18
- run: echo "Linting..."
+ run: echo "Linting..."
19
+
20
+ sonarqube:
21
+ name: SonarQube
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: actions/checkout@v4
25
+ with:
26
+ fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
27
+ - name: SonarQube Scan
28
+ uses: SonarSource/sonarqube-scan-action@v5
29
+ env:
30
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
sonar-project.properties
@@ -0,0 +1,2 @@
1
+sonar.projectKey=speedandfunction_automatization
2
+sonar.organization=speedandfunction
0 commit comments