diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0945a3c..5bea0f9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,7 +43,8 @@ jobs: tool: circomspect - name: Analyze circuits - run: circomspect packages/*/src -L ./node_modules/circomlib/circuits -s sarif + # circomspect does not exit with 0 if warnings are detected, have it return true so we can upload SARIF + run: circomspect packages/*/src -L ./node_modules/circomlib/circuits -s sarif || true - name: Upload SARIF file uses: github/codeql-action/upload-sarif@v3