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 fc22ccb commit d0528b9Copy full SHA for d0528b9
1 file changed
.github/workflows/ci.yml
@@ -32,8 +32,18 @@ jobs:
32
run: composer phpcs
33
- name: Execute tests (Unit and Feature)
34
run: composer test
35
- - name: 'Run SonarCloud scanner'
36
- if: ${{contains(github.ref, '/pull/')}}
37
- uses: SonarSource/sonarcloud-github-action@v2.2.0
38
- env:
39
- SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
+
+ sonar:
+ name: SonarCloud
+ runs-on: ubuntu-22.04
+ needs: validate
40
+ steps:
41
+ - name: Checkout repository
42
+ uses: actions/checkout@v5
43
+ with:
44
+ fetch-depth: 0
45
46
+ - name: Run SonarQube scan
47
+ uses: minvws/action-sonarqube@v1
48
49
+ sonar-token: ${{ secrets.SONAR_TOKEN }}
0 commit comments