initial commit

This commit is contained in:
Hector
2021-02-05 22:49:47 +00:00
commit 5e52baa4cf
8 changed files with 77 additions and 0 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
install-deps:
go mod download
# Standard go test
test:
go test ./... -v -race
# Make sure no unnecessary dependencies are present
go-mod-tidy:
go mod tidy -v
git diff-index --quiet HEAD
format:
go fmt $(go list ./... | grep -v /vendor/)
go vet $(go list ./... | grep -v /vendor/)