1
0
This repository has been archived on 2024-12-23. You can view files and clone it, but cannot push or open issues or pull requests.
gomponents/Makefile

17 lines
211 B
Makefile
Raw Permalink Normal View History

.PHONY: benchmark
benchmark:
go test -bench=.
2020-09-18 13:57:04 +02:00
.PHONY: cover
2020-09-18 13:57:04 +02:00
cover:
go tool cover -html=cover.out
.PHONY: lint
2020-09-18 13:57:04 +02:00
lint:
golangci-lint run
.PHONY: test
2020-09-18 13:57:04 +02:00
test:
go test -coverprofile=cover.out -shuffle on ./...
2020-09-18 13:57:04 +02:00