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 0661bdb commit ced1833Copy full SHA for ced1833
.travis.yml
@@ -2,7 +2,7 @@ language: go
2
go:
3
- tip
4
before_install:
5
- - make init
+ - make
6
script:
7
- make unit-report
8
after_success:
Makefile
@@ -15,8 +15,8 @@ $(TARGETS):
15
@go install -v $@
16
17
.PHONY: unit unit-report
18
-unit: lint vet cyclo $(TARGETS) test
19
-unit-report: lint vet cyclo $(TARGETS) test-report
+unit: lint vet cyclo test
+unit-report: lint vet cyclo test-report
20
21
.PHONY: lint vet cyclo test coverage test-report
22
lint: golint
0 commit comments