all repos — gomponents @ bf0db98f68ce95c18bb060913a6602de981fa715

HTML components in pure Go

Makefile (view raw)

.PHONY: benchmark
benchmark:
	go test -bench=. ./...

.PHONY: cover
cover:
	go tool cover -html=cover.out

.PHONY: lint
lint:
	golangci-lint run

.PHONY: test
test:
	go test -coverprofile=cover.out -shuffle on ./...