Skip to content

Commit

Permalink
Merge pull request #3 from vividvilla/fix-travis
Browse files Browse the repository at this point in the history
fix: exclude examples folder from go get
  • Loading branch information
vividvilla authored Aug 31, 2018
2 parents ae70b70 + 7a179b5 commit dd795d7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
language: go
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- tip

install: go get -t -v ./...
install:
- go get -t ./
- go get -t ./stores/...
script: go test -v -cover `go list ./... | grep -v 'examples\|benchmarks'`

0 comments on commit dd795d7

Please sign in to comment.