all repos — gomponents @ 4858e5d47d5bed0221a19ab46af306b8eab5935d

HTML components in pure Go

Makefile (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: benchmark cover lint test

benchmark:
	go test -bench=.

cover:
	go tool cover -html=cover.out

lint:
	golangci-lint run

test:
	go test -coverprofile=cover.out ./...