mirror of
https://github.com/TECHNOFAB11/dbmate.git
synced 2025-12-12 16:10:03 +01:00
14 lines
175 B
Makefile
14 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 ./...
|