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
2022-11-15 22:32:01 +01:00

17 lines
211 B
Makefile

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