go-waku/Makefile

10 lines
152 B
Makefile
Raw Normal View History

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