diff options
author | Ethan Koenig <ethantkoenig@gmail.com> | 2017-09-20 18:34:32 -0700 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-09-21 09:34:32 +0800 |
commit | fa1cbc2896e6291f1bd4e4ec58bbfea1dfacaa39 (patch) | |
tree | 074b7ced00c1130c4e227f348aa95fc63b525998 | |
parent | 6718ea6ff152155e4affc2493cfd0c634e3e228d (diff) | |
download | gitea-fa1cbc2896e6291f1bd4e4ec58bbfea1dfacaa39.tar.gz gitea-fa1cbc2896e6291f1bd4e4ec58bbfea1dfacaa39.zip |
Always run fmt check in CI (#2546)
-rw-r--r-- | .drone.yml | 1 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index 38b5ddf87f..056897cbc7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -20,6 +20,7 @@ pipeline: - make generate - make vet - make lint + - make fmt-check - make stylesheets-check - make misspell-check - make test-vendor @@ -132,7 +132,7 @@ fmt-check: fi; .PHONY: test -test: fmt-check +test: $(GO) test $(PACKAGES) .PHONY: coverage |