go-waku/Makefile

14 lines
193 B
Makefile
Raw Normal View History

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