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 10e2468 commit 7f7e13aCopy full SHA for 7f7e13a
.travis.yml
@@ -17,9 +17,7 @@ before_install:
17
- docker-compose up -d
18
19
install:
20
- - go get -v -d
21
- - go get -u github.com/onsi/ginkgo/ginkgo
22
- - go get -u github.com/onsi/gomega
+ - make deps
23
24
script:
25
- make $MAKE_TASK
Makefile
@@ -3,6 +3,12 @@ OK_COLOR=\033[32;01m
3
4
PKG_SRC := github.com/hellofresh/goengine
5
6
+deps:
7
+ @echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)"
8
+ @go get -u github.com/onsi/ginkgo/ginkgo
9
+ @go get -u github.com/onsi/gomega
10
+ @dep ensure -v -vendor-only
11
+
12
vet:
13
@echo "$(OK_COLOR)==> checking code correctness with 'go vet' tool$(NO_COLOR)"
14
@go vet ./...
0 commit comments