File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+
8+
9+ jobs :
10+ build :
11+ name : Build
12+ runs-on : ubuntu-latest
13+ permissions : read-all
14+ steps :
15+ - uses : actions/checkout@v2
16+ with :
17+ fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
18+ - uses : sonarsource/sonarqube-scan-action@master
19+ env :
20+ SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
21+ SONAR_HOST_URL : ${{ secrets.SONAR_HOST_URL }}
22+ # If you wish to fail your job when the Quality Gate is red, uncomment the
23+ # following lines. This would typically be used to fail a deployment.
24+ # - uses: sonarsource/sonarqube-quality-gate-action@master
25+ # timeout-minutes: 5
26+ # env:
27+ # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Original file line number Diff line number Diff line change 1+ sonar.projectKey =code-rhapsodie_ezdataflow-bundle_AYvYuaBhWE9sbcQmD1vz
2+
3+ sonar.sources =src
4+ sonar.tests =tests
You can’t perform that action at this time.
0 commit comments