diff --git a/.github/workflows/rust_checks.yml b/.github/workflows/rust_checks.yml index a5661832a..a9f75635d 100644 --- a/.github/workflows/rust_checks.yml +++ b/.github/workflows/rust_checks.yml @@ -29,4 +29,6 @@ jobs: run: | cmake -B build - name: cargo clippy - run: cargo clippy --workspace --all-targets -- --deny=warnings + # This used to have --deny=warnings, but that turns rust release day + # into automatic CI failure day, so we don't do that. + run: cargo clippy --workspace --all-targets