Added clippy to CI.

This commit is contained in:
Mohammad Dashti
2023-10-06 13:21:07 -07:00
parent d1f3b847e3
commit 50654c2ae9
2 changed files with 4 additions and 1 deletions

View File

@@ -63,6 +63,9 @@ jobs:
- run:
name: "Lint"
command: "cargo fmt --check"
- run:
name: "Clippy"
command: "cargo clippy --all --all-targets -- -Dwarnings"
- run:
name: "Tests"
command: "cargo clean && cargo build && cargo test && bash .circleci/run_tests.sh && .circleci/generate_coverage.sh"