Skip to content

Commit 9f0ca4f

Browse files
committed
fix: sonarqube action
1 parent 7724f65 commit 9f0ca4f

1 file changed

Lines changed: 10 additions & 18 deletions

File tree

.github/workflows/build.yml

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -78,22 +78,14 @@ jobs:
7878
# TODO: need to solve mismatch before proceeding, custom docker image
7979

8080
# TODO: should coverage be published in the case that SonarQube fails?
81-
- name: Upload coverage to Coveralls
82-
uses: coverallsapp/github-action@v2
83-
with:
84-
path-to-lcov: lcov.info
85-
continue-on-error: true
81+
# - name: Upload coverage to Coveralls
82+
# uses: coverallsapp/github-action@v2
83+
# with:
84+
# path-to-lcov: lcov.info
85+
# continue-on-error: true
8686

87-
sonarqube:
88-
needs: build_and_test
89-
runs-on: ubuntu-latest
90-
steps:
91-
- uses: actions/checkout@v4
92-
with:
93-
# Disabling shallow clones is recommended for improving the relevancy of reporting
94-
fetch-depth: 0
95-
- name: SonarQube Scan
96-
uses: SonarSource/sonarqube-scan-action@v6.0.0
97-
env:
98-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
99-
continue-on-error: true
87+
- name: SonarQube Scan
88+
uses: SonarSource/sonarqube-scan-action@v6.0.0
89+
env:
90+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
91+
continue-on-error: true

0 commit comments

Comments
 (0)