Skip to content

Commit f105971

Browse files
committed
chore(deps): tries to fix the dependencies install issue.
1 parent 99a7709 commit f105971

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ env:
1616

1717
before_script:
1818
- go get -u golang.org/x/lint/golint
19-
- go get -u github.com/stretchr/testify
19+
20+
install:
21+
- go get -d -t ./...
2022

2123
script:
2224
- make ci

Makefile

+1-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,4 @@ acceptance-test:
1515
go test --count=1 -v ./tests || (sleep 2; docker-compose -f tests/docker-compose.yml logs; docker-compose -f tests/docker-compose.yml stop; exit 1)
1616
docker-compose -f tests/docker-compose.yml stop
1717

18-
deps:
19-
go get -v ./...
20-
21-
ci: deps vet lint test
18+
ci: vet lint test

0 commit comments

Comments
 (0)