go-http-peering/Makefile
William Petit 9c26b79769
Some checks reported warnings
Cadoles/go-http-peering/pipeline/head This commit is unstable
Refactor Makefile
2022-09-05 12:54:33 +02:00

20 lines
396 B
Makefile

test:
go clean -testcache
go test -cover -v ./...
watch:
go run -mod=readonly github.com/cortesi/modd/cmd/modd@latest
release:
script/release
tidy:
go mod tidy
lint:
go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.49.0 run --tests=false --enable-all
bin/keygen:
CGO_ENABLED=0 go build -o bin/keygen ./cmd/keygen
.PHONY: test lint doc sequence-diagram bin/keygen release