We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a6c76 commit 8b9a84fCopy full SHA for 8b9a84f
1 file changed
.github/workflows/pyci.yml
@@ -21,11 +21,10 @@ jobs:
21
- name: Run linter and pytest
22
run: |
23
make check
24
- - name: Test & publish code coverage
25
- uses: paambaati/codeclimate-action@v9.0.0
26
- if: github.ref_name == 'main'
27
- env:
28
- CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
29
- with:
30
- coverageCommand: make test-coverage
31
- debug: true
+ - name: Run test coverage
+ run: |
+ make test-coverage
+ - name: SonarQubeScan
+ uses: SonarSource/sonarqube-scan-action@v4
+ env:
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
0 commit comments