1
0
gomponents/Makefile
Markus Wüstenberg 44c2744837
Test using Go 1.17 (#91)
Also set the new `-shuffle` flag when testing.
2021-10-06 20:51:31 +02:00

15 lines
188 B
Makefile

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