Adding upstream version 0.0~git20191008.06d1c00.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
358bcd43bc
commit
6483251b09
6 changed files with 429 additions and 0 deletions
12
Makefile
Normal file
12
Makefile
Normal file
|
@ -0,0 +1,12 @@
|
|||
PACKAGES ?= $(shell go list ./...)
|
||||
|
||||
.PHONY: check
|
||||
check: lint
|
||||
go test
|
||||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
@which golint > /dev/null; if [ $$? -ne 0 ]; then \
|
||||
go get -u github.com/golang/lint/golint; \
|
||||
fi
|
||||
@for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;
|
Loading…
Add table
Add a link
Reference in a new issue