* CLI properly formats the IP addresses in runner show * LXD provider now waits for an IP address before returning on Create * Added a few mocks for testing Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
15 lines
373 B
Makefile
15 lines
373 B
Makefile
PROJECT := github.com/juju/retry
|
|
|
|
default: check
|
|
|
|
check-licence:
|
|
@(fgrep -rl "Licensed under the LGPLv3" .;\
|
|
fgrep -rl "MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT" .;\
|
|
find . -name "*.go") | sed -e 's,\./,,' | sort | uniq -u | \
|
|
xargs -I {} echo FAIL: licence missed: {}
|
|
|
|
check: check-licence
|
|
go test $(PROJECT)/...
|
|
|
|
docs:
|
|
godoc2md $(PROJECT) > README.md
|