all repos — gomponents @ 15d2cc9373d10e2d2f3bedde0a0a6d32c243ddfa

HTML components in pure Go

Add Makefile (#4)

Markus Wüstenberg markus@maragu.dk
Fri, 18 Sep 2020 13:57:04 +0200
commit

15d2cc9373d10e2d2f3bedde0a0a6d32c243ddfa

parent

a564fd6cee4dd22b8c00ce2aa9399652ccc3cf98

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

jump to
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 ./...
+