1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
.PHONY: check format test lint check: @cargo check format: @cargo fmt test: @cargo test lint: @cargo clippy checks: check format test lint @git status @echo looks good enough to raise a PR 👍 @echo awesome work! 😍