mirror of
https://github.com/status-im/go-waku.git
synced 2025-02-13 22:17:08 +00:00
10 lines
152 B
Makefile
10 lines
152 B
Makefile
.PHONY: all build lint
|
|
|
|
all: build
|
|
|
|
build:
|
|
go build -o build/waku waku.go
|
|
|
|
lint:
|
|
@echo "lint"
|
|
@golangci-lint --exclude=SA1019 run ./... --deadline=5m
|