We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2604406 commit cba5afdCopy full SHA for cba5afd
2 files changed
.github/workflows/sonarqube.yml
@@ -0,0 +1,17 @@
1
+name: SonarQube
2
+
3
+on: ['push', 'pull_request']
4
5
+jobs:
6
+ sonarcloud:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ with:
11
+ # Disabling shallow clone is recommended for improving relevancy of reporting
12
+ fetch-depth: 0
13
+ - name: SonarCloud Scan
14
+ uses: sonarsource/sonarcloud-github-action@v1.2
15
+ env:
16
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
sonar-project.properties
@@ -0,0 +1,6 @@
+sonar.organization=andremiras
+sonar.projectKey=AndreMiras_python
+# relative paths to source directories. More details and properties are described
+# in https://sonarcloud.io/documentation/project-administration/narrowing-the-focus/
+sonar.sources=pythonforandroid/bootstraps/
0 commit comments