go-waku/Makefile

14 lines
193 B
Makefile
Raw Normal View History

2021-08-13 11:56:09 +00:00
.PHONY: all build lint test
2021-04-13 18:54:15 +00:00
all: build
build:
go build -o build/waku waku.go
lint:
@echo "lint"
2021-08-13 11:56:09 +00:00
@golangci-lint --exclude=SA1019 run ./... --deadline=5m
test:
go test -v -failfast ./...