summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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