all repos — gomponents @ 15d2cc9373d10e2d2f3bedde0a0a6d32c243ddfa

HTML components in pure Go

Add Makefile (#4)

Markus Wüstenberg
commit

15d2cc9373d10e2d2f3bedde0a0a6d32c243ddfa

parent

a564fd6cee4dd22b8c00ce2aa9399652ccc3cf98

2 files changed, 12 insertions(+), 0 deletions(-)

changed files
A .gitignore
@@ -0,0 +1,1 @@
+/cover.out
A Makefile
@@ -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 ./... +