mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-02 14:03:06 +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
|