dbmate/Makefile

15 lines
209 B
Makefile
Raw Normal View History

2015-11-25 10:57:58 -08:00
DOCKER := docker-compose run dbmate
all: build lint test
build:
docker-compose build
lint:
$(DOCKER) golint ./...
$(DOCKER) go vet ./...
2015-11-27 14:27:44 -08:00
$(DOCKER) errcheck ./...
2015-11-25 10:57:58 -08:00
test:
2015-11-30 22:05:23 -08:00
$(DOCKER) go test -p 1 -v ./...