blob: 45ca47d9b6e06df260df88e872e602e4e582337d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
all: build test lint
download:
go mod download
build: download
go build -C cmd/recvcheck
test:
go test -race -coverprofile=coverage.txt .
lint:
golangci-lint run
|