Add Makefile

pull/1/head
Manos Pitsidianakis 2022-08-24 12:22:44 +03:00
parent 088fdc6945
commit 615b49b448
1 changed files with 11 additions and 0 deletions

11
Makefile 100644
View File

@ -0,0 +1,11 @@
.PHONY: check
check:
cargo check --all
.PHONY: fmt
fmt:
cargo fmt --all
.PHONY: lint
lint:
cargo clippy --all