-
Notifications
You must be signed in to change notification settings - Fork 48
Open
Labels
A-ciArea: Continuous IntegrationArea: Continuous Integration
Description
In our CI, we run
cargo hack clippy --workspace --feature-powerset --depth 3
and then
cargo hack clippy --workspace --feature-powerset --depth 3 --bins.
However,
cargo hack clippy --workspace --feature-powerset --depth 3 checks both the libraries and the binaries. I propose changing the CI to
cargo hack clippy --workspace --feature-powerset --depth 3 --lib
and
cargo hack clippy --workspace --feature-powerset --depth 3 --bins.
Also, we run
cargo hack clippy --workspace --feature-powerset --depth 3 --examples
which is a no-op because we don't have any. Why don't we remove it until it makes sense?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-ciArea: Continuous IntegrationArea: Continuous Integration