diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..fe09ed82 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +.PHONY: all build test clippy fmt + +lint: fmt clippy + +fmt: + cargo fmt + +clippy: + cargo clippy --all --all-targets --all-features -- -D warnings + +test: + cargo test --all --all-targets --all-features + +build: + cargo build + +all: build test \ No newline at end of file