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 e931148 commit 987c58cCopy full SHA for 987c58c
.github/workflows/build.yml
.github/workflows/ci.yml
@@ -29,4 +29,18 @@ jobs:
29
pip install -r test_requirements.txt
30
coverage run -m pytest
31
deactivate
32
- rm -rf env
+ rm -rf env
33
+
34
+ sonarcloud:
35
+ name: SonarCloud
36
+ runs-on: ubuntu-latest
37
+ needs: python-test
38
+ steps:
39
+ - uses: actions/checkout@v4
40
+ with:
41
+ fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
42
+ - name: SonarCloud Scan
43
+ uses: SonarSource/sonarcloud-github-action@master
44
+ env:
45
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
46
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
0 commit comments