fix(acp): de-duplicate post-cancel orphan-update warnings (#457) #1313
This file contains hidden or 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: cargo-deny | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: [main] | |
| jobs: | |
| cargo-deny: | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| defaults: | |
| run: | |
| working-directory: ./nori-rs | |
| env: | |
| # Disable sccache wrapper from .cargo/config.toml since it's not available | |
| # in the cargo-deny Docker container. | |
| RUSTC_WRAPPER: "" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Run cargo-deny | |
| uses: EmbarkStudios/cargo-deny-action@v2 | |
| with: | |
| rust-version: nightly | |
| manifest-path: ./nori-rs/Cargo.toml | |
| log-level: warn | |
| command: check | |
| arguments: --all-features |