Add Makefile for command for checking code
This commit is contained in:
parent
4d055374d9
commit
2adcab4394
1 changed files with 6 additions and 0 deletions
6
Makefile
6
Makefile
|
@ -11,6 +11,12 @@ docs:
|
|||
test:
|
||||
cargo test --workspace
|
||||
|
||||
.PHONY: check
|
||||
check:
|
||||
cargo check --workspace
|
||||
cargo fmt --all -- --check
|
||||
cargo clippy -- -W warnings
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
cargo clean --workspace
|
||||
|
|
Loading…
Reference in a new issue