8 lines
112 B
Makefile
8 lines
112 B
Makefile
|
.PHONY: test lint
|
||
|
|
||
|
test:
|
||
|
go test -v ./...
|
||
|
|
||
|
lint:
|
||
|
golangci-lint run --enable-all --disable=godox --timeout 10m
|