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 8fcda04 commit 1d95c51Copy full SHA for 1d95c51
.drone.yml
@@ -17,6 +17,7 @@ pipeline:
17
commands:
18
- apk -U add openssh-client
19
- make clean
20
+ - make notice-up-to-date
21
- make generate
22
- make vet
23
- make lint
Makefile
@@ -71,6 +71,14 @@ errcheck:
71
fi
72
errcheck $(PACKAGES)
73
74
+NOTICE: vendor/
75
+ rm -f NOTICE # `govendor license` appends...
76
+ govendor license -o NOTICE +v
77
+
78
+notice-up-to-date: NOTICE
79
+ git ls-files --error-unmatch NOTICE
80
+ git diff --exit-code
81
82
.PHONY: lint
83
lint:
84
@hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
0 commit comments