1
0
mirror of https://github.com/go-acme/lego.git synced 2025-01-03 07:19:39 +02:00
lego/Makefile

16 lines
171 B
Makefile
Raw Normal View History

.PHONY: all
default: clean checks test build
test: clean
go test -v -cover ./...
clean:
rm -rf dist/ builds/ cover.out
checks:
go vet ./...
build: clean
go build