CI: Remove --deny=warnings from clippy test

This was pretty annoying on rust release day, because it introduced
new warnings.

Specifically 1.73 introduced a spurious one about PartialOrd and Ord
disagreeing when both were in fact #derive-d.
This commit is contained in:
Fabian Boehm 2023-10-07 19:32:57 +02:00
parent 79bbf5247a
commit e62f32c16b

View File

@ -29,4 +29,6 @@ jobs:
run: | run: |
cmake -B build cmake -B build
- name: cargo clippy - 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