Codebase list golang-github-renekroon-ttlcache / d4954cad-81bc-47b2-979d-0b16495f3379/main .travis.yml
d4954cad-81bc-47b2-979d-0b16495f3379/main

Tree @d4954cad-81bc-47b2-979d-0b16495f3379/main (Download .tar.gz)

.travis.yml @d4954cad-81bc-47b2-979d-0b16495f3379/mainraw · history · blame

language: go

go:
  - 1.13
  - 1.12
git:
  depth: 1

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

script:
  - golint .
  - go test -cover -race -count=1 -timeout=30s -run .
  - cd bench; go test -run=Bench.* -bench=. -benchmem