From 71908396770049d2157d8a5443200a280a6c6f79 Mon Sep 17 00:00:00 2001 From: Keith Zantow Date: Fri, 17 May 2024 11:55:33 -0400 Subject: [PATCH] chore: update makefile to include bootstrap and go mod tidy Signed-off-by: Keith Zantow --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 064db79..4dd9d53 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,14 @@ .PHONY: test test: unit fuzz +.PHONY: bootstrap +bootstrap: + go install github.com/rinchsan/gosimports/cmd/gosimports@v0.3.8 + .PHONY: format format: gofmt -w . + go mod tidy gosimports -w -local github.com/spdx . .PHONY: unit