Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Change lint action to
-D warnings
Currently, the lint action specifies `-D clippy::all`. This means that if we enable any additional lints in the code, e.g. by adding `#![warn(clippy::pedantic)]` to the `main` module, these lints will not fail CI. By specifying `-D warnings` instead, any lints we enable as warnings in code will fail CI.
- Loading branch information