fix: return error rather than panicking on unreadable circuits (#3179) #3
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: deny | |
on: | |
push: | |
branches: [master] | |
paths: [Cargo.lock] | |
pull_request: | |
branches: [master] | |
paths: [Cargo.lock] | |
merge_group: | |
env: | |
RUSTFLAGS: -D warnings | |
CARGO_TERM_COLOR: always | |
concurrency: deny-${{ github.head_ref || github.run_id }} | |
jobs: | |
deny: | |
name: deny | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: EmbarkStudios/cargo-deny-action@v1 | |
with: | |
command: check all |