1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-04 06:13:17 +00:00
forgejo/vendor/strk.kbt.io/projects/go/libravatar/Makefile

12 lines
269 B
Makefile

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;