mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-04 15:03:06 +00:00
14 lines
193 B
Makefile
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 ./...
|
|
|