Codebase list golang-github-gobuffalo-packr / cbdaebd v2 / internal / takeon / github.com / markbates / safe / Makefile
cbdaebd

Tree @cbdaebd (Download .tar.gz)

Makefile @cbdaebdraw · history · blame

TAGS ?= "sqlite"
GO_BIN ?= go

install:
	packr
	$(GO_BIN) install -tags ${TAGS} -v .
	make tidy

tidy:
ifeq ($(GO111MODULE),on)
	$(GO_BIN) mod tidy
else
	echo skipping go mod tidy
endif

deps:
	$(GO_BIN) get github.com/gobuffalo/release
	$(GO_BIN) get github.com/gobuffalo/packr/packr
	$(GO_BIN) get -tags ${TAGS} -t ./...
	make tidy

build:
	packr
	$(GO_BIN) build -v .
	make tidy

test:
	packr
	$(GO_BIN) test -tags ${TAGS} ./...
	make tidy

ci-test:
	$(GO_BIN) test -tags ${TAGS} -race ./...
	make tidy

lint:
	gometalinter --vendor ./... --deadline=1m --skip=internal
	make tidy

update:
	$(GO_BIN) get -u -tags ${TAGS}
	make tidy
	packr
	make test
	make install
	make tidy

release-test:
	$(GO_BIN) test -tags ${TAGS} -race ./...
	make tidy

release:
	make tidy
	release -y -f version.go
	make tidy