Update README.md #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SonarQube analysis | |
on: | |
push: | |
branches: | |
- develop | |
- feature/sonarcloud-coverage | |
jobs: | |
sonarqube: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting. | |
fetch-depth: 0 | |
- name: Compile SCs | |
run: make compile-scs | |
working-directory: test | |
- name: Test | |
env: | |
ZKPROVER_URI: 127.0.0.1 | |
run: make test-full-non-e2e | |
working-directory: test | |
# Triggering SonarQube analysis as results of it are required by Quality Gate check. | |
- name: SonarQube Scan | |
uses: sonarsource/sonarqube-scan-action@master | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} |