Codebase list golang-github-renekroon-ttlcache / debian/2.0.0+ds-1 .travis.yml
debian/2.0.0+ds-1

Tree @debian/2.0.0+ds-1 (Download .tar.gz)

.travis.yml @debian/2.0.0+ds-1

d1510c8
 
 
aa8a254
 
d1510c8
 
 
 
 
aa8a254
 
d1510c8
 
 
 
0634dc9
 
language: go

go:
  - "1.14"
  - "1.13"
git:
  depth: 1

install:
  - go install -race std
  - go install golang.org/x/tools/cmd/cover
  - go install 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