timingbench/Makefile

12 lines
128 B
Makefile
Raw Normal View History

2024-05-19 01:37:05 +00:00
default: test
test:
go test -v -count=1 ./...
2024-05-19 01:49:03 +00:00
fmt:
go fmt ./...
lint:
golangci-lint run
sh -c 'test -z "$$(gofmt -l .)"'