From b6247a8372eb18a19c35a924316941d6c1e585d2 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sun, 15 Jan 2023 22:40:41 -0330 Subject: volume --- Makefile | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d92c5fa..1250725 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,11 @@ -build: tidy format - go build -run: tidy format - go run . +build: test format + cargo build --workspace -format: - gofmt -s -w . +doc: test format + cargo doc --workspace --open + +test: format + cargo test --workspace -tidy: - go mod tidy +format: + cargo fmt --all -- cgit v1.2.3