Browse Source

Always run fmt check in CI (#2546)

for-closed-social
Ethan Koenig 6 years ago
committed by Lunny Xiao
parent
commit
fa1cbc2896
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      .drone.yml
  2. +1
    -1
      Makefile

+ 1
- 0
.drone.yml 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

+ 1
- 1
Makefile View File

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

Loading…
Cancel
Save