We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0742fd4 commit 9f979d4Copy full SHA for 9f979d4
.travis.yml
@@ -0,0 +1,11 @@
1
+language: go
2
+go:
3
+ - "1.11.x"
4
+ - master
5
+
6
+env:
7
+ - GO111MODULE=on
8
9
+install: make setup modules
10
11
+script: make tests tests-cover-html build
Makefile
@@ -43,7 +43,7 @@ build: fmt vet compile ## build the application
43
mocks: ## generate mocks for testing
44
./scripts/mocks
45
46
-tests: ## run all tests
+tests: ensure-out-dir # run all tests
47
$(GOBIN) test $(SRC_PACKAGES) -p=1 -coverprofile ./out/coverage -v
48
49
tests-cover-html: ensure-out-dir ## run all tests and generates coverage report in html
0 commit comments