Skip to content

Commit

Permalink
ci: force lint job step to return true
Browse files Browse the repository at this point in the history
  • Loading branch information
sripwoud committed Jul 8, 2024
1 parent 50b76f2 commit 409269d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 409269d

Please sign in to comment.