mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
Add a release system. (#550)
* feat: add release system. * feat: goreleaser. * review: minor changes.
This commit is contained in:
parent
8e9c5ac3e6
commit
3cc9a19a1c
5 changed files with 86 additions and 16 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
.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
|
||||
Loading…
Add table
Add a link
Reference in a new issue