timingbench/Makefile
2024-05-18 18:49:03 -07:00

12 lines
128 B
Makefile

default: test
test:
go test -v -count=1 ./...
fmt:
go fmt ./...
lint:
golangci-lint run
sh -c 'test -z "$$(gofmt -l .)"'