File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 44
55- ` cargo check ` to analyze the current package and report errors.
66- ` cargo build ` to compile the current package.
7- - ` cargo clippy ` to catch common mistakes and improve code.
7+ - ` cargo clippy --workspace --all-targets --all-features -- -D warnings ` to catch common mistakes and improve code.
88- ` cargo test --features tests ` to run unit tests.
99- ` cargo test ` to run unit tests include doc tests.
1010- ` cargo bench ` to run benchmark tests.
1111
1212Useful tips:
1313
14+ - Run linter for specific services: ` cargo clippy --all-targets --features=services-s3 -- -D warnings `
1415- Check/Build/Test/Clippy all code: ` cargo <cmd> --tests --benches --examples `
1516- Test specific function: ` cargo test tests::it::services::fs `
1617
You can’t perform that action at this time.
0 commit comments