mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
13 lines
278 B
Makefile
13 lines
278 B
Makefile
GO_FILES=$(shell find . -name '*.go' | grep -vE 'vendor')
|
|
|
|
lint-fix:
|
|
go get github.com/golangci/golangci-lint
|
|
goimports -w $(GO_FILES)
|
|
go fmt ./...
|
|
golangci-lint -v run ./...
|
|
|
|
test:
|
|
go test -count 1 -v -race ./...
|
|
|
|
bench:
|
|
go test -bench=. -benchmem -v -run Benchmark ./...
|