Always run fmt check in CI (#2546)

This commit is contained in:
Ethan Koenig
2017-09-20 18:34:32 -07:00
repo.diff.committed_by Lunny Xiao
repo.diff.parent 6718ea6ff1
repo.diff.commit fa1cbc2896
repo.diff.stats_desc%!(EXTRA int=2, int=2, int=1)

repo.diff.view_file

@@ -20,6 +20,7 @@ pipeline:
- make generate
- make vet
- make lint
- make fmt-check
- make stylesheets-check
- make misspell-check
- make test-vendor

repo.diff.view_file

@@ -132,7 +132,7 @@ fmt-check:
fi;
.PHONY: test
test: fmt-check
test:
$(GO) test $(PACKAGES)
.PHONY: coverage