mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-10 22:06:18 +00:00
14 lines
193 B
Makefile
14 lines
193 B
Makefile
.PHONY: all build lint test
|
|
|
|
all: build
|
|
|
|
build:
|
|
go build -o build/waku waku.go
|
|
|
|
lint:
|
|
@echo "lint"
|
|
@golangci-lint --exclude=SA1019 run ./... --deadline=5m
|
|
test:
|
|
go test -v -failfast ./...
|
|
|