1
0
Fork 0

Merge branch 'validate-govet' of https://github.com/vdemeester/traefik into vdemeester-validate-govet

This commit is contained in:
emile 2015-09-24 16:09:39 +02:00
commit 396a8f9360
2 changed files with 35 additions and 1 deletions

View file

@ -32,11 +32,14 @@ test-integration: build
$(DOCKER_RUN_TRAEFIK) ./script/make.sh generate binary test-integration
validate: build
$(DOCKER_RUN_TRAEFIK) ./script/make.sh validate-gofmt
$(DOCKER_RUN_TRAEFIK) ./script/make.sh validate-gofmt validate-govet
validate-gofmt: build
$(DOCKER_RUN_TRAEFIK) ./script/make.sh validate-gofmt
validate-govet: build
$(DOCKER_RUN_TRAEFIK) ./script/make.sh validate-govet
build: dist
docker build -t "$(TRAEFIK_DEV_IMAGE)" -f build.Dockerfile .