dbmate/Makefile
2015-11-27 14:27:44 -08:00

14 lines
201 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 ./...