diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26d4755da19..a5c58d4e01a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -344,6 +344,7 @@ jobs: - uses: actions/checkout@v4 - uses: EmbarkStudios/cargo-deny-action@v2 with: + arguments: --workspace --all-features command: check advisories cargo-deny: @@ -353,6 +354,7 @@ jobs: - uses: actions/checkout@v4 - uses: EmbarkStudios/cargo-deny-action@v2 with: + arguments: --workspace --all-features command: check bans licenses sources wasm: diff --git a/justfile b/justfile index f143bc06abc..bf059b8e410 100755 --- a/justfile +++ b/justfile @@ -240,7 +240,7 @@ nix-shell-macos: # Run various auditing tools to help us stay legal and safe audit: - cargo deny check advisories bans licenses sources + cargo deny --workspace --all-features check advisories bans licenses sources # Run tests with `cargo nextest` (all unit-tests, no doc-tests, faster) nextest *FLAGS='--workspace':