From 7d6618489b788e860a689cf4a5f18700d7e982bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Tue, 5 Nov 2024 21:18:17 +0100 Subject: [PATCH] make: Add "check" target --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index c007fb7..68cda46 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ +.PHONY: check +check: | fmt lint test + .PHONY: docs docs: cargo watch -- cargo doc