dbmate/Makefile
2015-12-01 10:16:23 -08:00

14 lines
180 B
Makefile

DOCKER := docker-compose run dbmate
all: build lint test
build:
docker-compose build
lint:
$(DOCKER) golint
$(DOCKER) go vet
$(DOCKER) errcheck
test:
$(DOCKER) go test -v