Let code format style errors fail CI
This commit is contained in:
parent
a50b699708
commit
e7fb9d096b
|
@ -6,4 +6,4 @@ go:
|
||||||
- 1.5
|
- 1.5
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- make -f Makefile
|
- make style test
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -21,6 +21,10 @@ endif
|
||||||
|
|
||||||
all: assets format build test
|
all: assets format build test
|
||||||
|
|
||||||
|
style:
|
||||||
|
@echo ">> checking code style"
|
||||||
|
@! gofmt -d **/*.go | grep '^'
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@echo ">> running tests"
|
@echo ">> running tests"
|
||||||
@$(GO) test -short $(pkgs)
|
@$(GO) test -short $(pkgs)
|
||||||
|
@ -46,4 +50,4 @@ assets:
|
||||||
@go-bindata $(bindata_flags) -pkg ui -o web/ui/bindata.go -ignore '(.*\.map|bootstrap\.js|bootstrap-theme\.css|bootstrap\.css)' web/ui/templates/... web/ui/static/...
|
@go-bindata $(bindata_flags) -pkg ui -o web/ui/bindata.go -ignore '(.*\.map|bootstrap\.js|bootstrap-theme\.css|bootstrap\.css)' web/ui/templates/... web/ui/static/...
|
||||||
|
|
||||||
|
|
||||||
.PHONY: all format build test vet docker assets
|
.PHONY: all style format build test vet docker assets
|
||||||
|
|
Loading…
Reference in New Issue