File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 63
63
- run :
64
64
name : " Lint"
65
65
command : " cargo fmt --check"
66
+ - run :
67
+ name : " Clippy"
68
+ command : " cargo clippy --all --all-targets -- -Dwarnings"
66
69
- run :
67
70
name : " Tests"
68
71
command : " cargo clean && cargo build && cargo test && bash .circleci/run_tests.sh && .circleci/generate_coverage.sh"
Original file line number Diff line number Diff line change 2
2
3
3
Thank you for contributing! Just a few tips here:
4
4
5
- 1 . ` cargo fmt ` your code before opening up a PR
5
+ 1 . ` cargo fmt ` and ` cargo clippy ` your code before opening up a PR
6
6
2 . Run the test suite (e.g. ` pgbench ` ) to make sure everything still works. The tests are in ` .circleci/run_tests.sh ` .
7
7
3 . Performance is important, make sure there are no regressions in your branch vs. ` main ` .
8
8
You can’t perform that action at this time.
0 commit comments