dbmate/Makefile
2015-11-25 10:57:58 -08:00

13 lines
175 B
Makefile

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