We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07f2356 commit 297e3e7Copy full SHA for 297e3e7
.github/workflows/build.yml
@@ -0,0 +1,23 @@
1
+on:
2
+ # Trigger analysis when pushing to your main branches, and when creating a pull request.
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+ types: [opened, synchronize, reopened]
8
+
9
+name: Main Workflow
10
+jobs:
11
+ sonarqube:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+ - name: SonarQube Scan
18
+ uses: SonarSource/sonarqube-scan-action@master
19
+ env:
20
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
21
+ DYNAMIC_PROJECT_KEY: "${{ github.event.repository.name }}"
22
23
+ args: -Dsonar.projectKey=sonarqubecloud-aleksandra-bozhinoska_java-cl -Dsonar.organization=sonarqubecloud-aleksandra-bozhinoska
0 commit comments