Add Makefile for command for checking code

This commit is contained in:
Tobie Morgan Hitchcock 2022-05-04 00:40:18 +01:00
parent 4d055374d9
commit 2adcab4394

View file

@ -11,6 +11,12 @@ docs:
test: test:
cargo test --workspace cargo test --workspace
.PHONY: check
check:
cargo check --workspace
cargo fmt --all -- --check
cargo clippy -- -W warnings
.PHONY: clean .PHONY: clean
clean: clean:
cargo clean --workspace cargo clean --workspace