summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEthan Koenig <ethantkoenig@gmail.com>2017-09-20 18:34:32 -0700
committerLunny Xiao <xiaolunwen@gmail.com>2017-09-21 09:34:32 +0800
commitfa1cbc2896e6291f1bd4e4ec58bbfea1dfacaa39 (patch)
tree074b7ced00c1130c4e227f348aa95fc63b525998
parent6718ea6ff152155e4affc2493cfd0c634e3e228d (diff)
downloadgitea-fa1cbc2896e6291f1bd4e4ec58bbfea1dfacaa39.tar.gz
gitea-fa1cbc2896e6291f1bd4e4ec58bbfea1dfacaa39.zip
Always run fmt check in CI (#2546)
-rw-r--r--.drone.yml1
-rw-r--r--Makefile2
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
diff --git a/Makefile b/Makefile
index 32b48c6605..2fbd3e4e7f 100644
--- a/Makefile
+++ b/Makefile
@@ -132,7 +132,7 @@ fmt-check:
fi;
.PHONY: test
-test: fmt-check
+test:
$(GO) test $(PACKAGES)
.PHONY: coverage