Codebase list golang-github-nebulouslabs-entropy-mnemonics / upstream/0.0_git20170413.0 .travis.yml
upstream/0.0_git20170413.0

Tree @upstream/0.0_git20170413.0 (Download .tar.gz)

.travis.yml @upstream/0.0_git20170413.0raw · history · blame

language: go

go:
  - 1.8

install:
  - go get -u github.com/golang/lint/golint
  - go get -u golang.org/x/tools/cmd/cover
  - go get -u golang.org/x/text/unicode/norm
  - test -z "$(go fmt)"
  - test -z "$(golint)"
  - test -z "$(go vet)"

script: go test -v -bench=. && go test -covermode=atomic && go install

sudo: false