Skip to content

Commit

Permalink
activate go111modules in travis ci
Browse files Browse the repository at this point in the history
  • Loading branch information
schollz committed Dec 14, 2018
1 parent 6fa1b4c commit fd8a1eb
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ go:
env:
- "PATH=/home/travis/gopath/bin:$PATH"

install: true

script:
- go build -v
- go test -v -cover github.com/schollz/croc/src/compress
- go test -v -cover github.com/schollz/croc/src/croc
- go test -v -cover github.com/schollz/croc/src/crypt
- go test -v -cover github.com/schollz/croc/src/models
- go test -v -cover github.com/schollz/croc/src/relay
- go test -v -cover github.com/schollz/croc/src/tcp
- go test -v -cover github.com/schollz/croc/src/utils
- go test -v -cover github.com/schollz/croc/src/zipper
- env GO111MODULE=on go build -v
- env GO111MODULE=on go test -v -cover github.com/schollz/croc/src/compress
- env GO111MODULE=on go test -v -cover github.com/schollz/croc/src/croc
- env GO111MODULE=on go test -v -cover github.com/schollz/croc/src/crypt
- env GO111MODULE=on go test -v -cover github.com/schollz/croc/src/models
- env GO111MODULE=on go test -v -cover github.com/schollz/croc/src/relay
- env GO111MODULE=on go test -v -cover github.com/schollz/croc/src/tcp
- env GO111MODULE=on go test -v -cover github.com/schollz/croc/src/utils
- env GO111MODULE=on go test -v -cover github.com/schollz/croc/src/zipper

0 comments on commit fd8a1eb

Please sign in to comment.