Codebase list golang-github-renekroon-ttlcache / upstream/1.4.0+git20190429.e7780e9 .travis.yml
upstream/1.4.0+git20190429.e7780e9

Tree @upstream/1.4.0+git20190429.e7780e9 (Download .tar.gz)

.travis.yml @upstream/1.4.0+git20190429.e7780e9raw · history · blame

language: go

go:
  - 1.12
  - 1.11
git:
  depth: 1

install:
  - go install -race std
  - go get golang.org/x/tools/cmd/cover
  - go get golang.org/x/lint/golint
  - go get github.com/tools/godep
  - export PATH=$HOME/gopath/bin:$PATH
  - godep restore

script:
  - golint .
  - go test ./... -race -count=1 -timeout=1m -run .
  - go test -cover ./...
  - go test -run=Bench.* -bench=. -benchmem