go-http-peering/Makefile

20 lines
396 B
Makefile
Raw Normal View History

2019-02-03 20:56:58 +01:00
test:
go clean -testcache
go test -cover -v ./...
watch:
2022-09-05 12:40:58 +02:00
go run -mod=readonly github.com/cortesi/modd/cmd/modd@latest
2019-02-03 20:56:58 +01:00
2019-04-09 11:20:47 +02:00
release:
script/release
2019-02-03 20:56:58 +01:00
tidy:
go mod tidy
lint:
2022-09-05 12:40:58 +02:00
go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.49.0 run --tests=false --enable-all
2019-02-03 20:56:58 +01:00
2019-02-22 17:35:49 +01:00
bin/keygen:
2022-09-05 10:56:41 +02:00
CGO_ENABLED=0 go build -o bin/keygen ./cmd/keygen
2019-02-03 20:56:58 +01:00
2019-04-09 11:20:47 +02:00
.PHONY: test lint doc sequence-diagram bin/keygen release