all repos — gomponents @ 6e5081e5671191475bf5cc858cda66a07cabd1d5

HTML components in pure Go

Makefile (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: benchmark
benchmark:
	go test -bench . -benchmem ./...

.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 ./...