Add a Makefile and update/alter deps

This commit is contained in:
2022-07-16 10:22:47 -04:00
parent 206e6d6110
commit 813388c32c
3 changed files with 27 additions and 9 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
.PHONY: all
all: test
.PHONY: clean
clean:
rm -f coverage.out
.PHONY: test
test:
go test -v -coverprofile=coverage.out ./...
.PHONY: show-cover
show-cover:
go tool cover -func=coverage.out