Skip to content

Update README.md

Update README.md #5

Workflow file for this run

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 }}