mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-02-25 12:55:35 -07:00
16 lines
238 B
Makefile
16 lines
238 B
Makefile
all: update test check
|
|
|
|
update:
|
|
go get -u -t . ./_examples
|
|
|
|
test:
|
|
go test . ./_examples
|
|
|
|
check:
|
|
go get -u github.com/alecthomas/gometalinter
|
|
gometalinter --install
|
|
gometalinter --config .gometalinter
|
|
|
|
fmt:
|
|
gofmt -s -w . ./_examples
|