Skip to content

Commit 7f7e13a

Browse files
committed
Install dependencies with godep
1 parent 10e2468 commit 7f7e13a

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ before_install:
1717
- docker-compose up -d
1818

1919
install:
20-
- go get -v -d
21-
- go get -u github.com/onsi/ginkgo/ginkgo
22-
- go get -u github.com/onsi/gomega
20+
- make deps
2321

2422
script:
2523
- make $MAKE_TASK

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ OK_COLOR=\033[32;01m
33

44
PKG_SRC := github.com/hellofresh/goengine
55

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+
612
vet:
713
@echo "$(OK_COLOR)==> checking code correctness with 'go vet' tool$(NO_COLOR)"
814
@go vet ./...

0 commit comments

Comments
 (0)