go-waku/Makefile
2021-08-13 13:56:09 +02:00

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 ./...