garm/vendor/github.com/juju/retry/Makefile
Gabriel Adrian Samfira 5566cde77f A few fixes
* 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>
2022-07-10 14:52:15 +00:00

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