From 67d748a53fd03e571c2f020506f73098b6673fcf Mon Sep 17 00:00:00 2001 From: Nick Dumas Date: Fri, 9 Jun 2023 11:20:01 -0400 Subject: [PATCH] I'm not vendoring my dependencies, so I *have* to do this --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index ed76378..91bebbc 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,9 @@ clean-all: rm bin/${BINARY_NAME}-windows.exe test: + go mod tidy go test ./... test_coverage: + go mod tidy go test ./... -coverprofile=coverage.out