We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54f0293 commit 77ae57dCopy full SHA for 77ae57d
.drone.yml
@@ -16,6 +16,7 @@ pipeline:
16
commands:
17
- apk -U add openssh-client
18
- make clean
19
+ - make notice-up-to-date
20
- make generate
21
- make vet
22
- make lint
Makefile
@@ -63,6 +63,14 @@ errcheck:
63
fi
64
errcheck $(PACKAGES)
65
66
+NOTICE: vendor/
67
+ rm -f NOTICE # `govendor license` appends...
68
+ govendor license -o NOTICE +v
69
+
70
+notice-up-to-date: NOTICE
71
+ git ls-files --error-unmatch NOTICE
72
+ git diff --exit-code
73
74
.PHONY: lint
75
lint:
76
@hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
0 commit comments