1
0

Add Makefile (#4)

This commit is contained in:
Markus Wüstenberg 2020-09-18 13:57:04 +02:00 committed by GitHub
parent a564fd6cee
commit 15d2cc9373
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/cover.out

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
.PHONY: cover lint test
cover:
go tool cover -html=cover.out
lint:
golangci-lint run
test:
go test -coverprofile=cover.out -mod=readonly ./...