summaryrefslogtreecommitdiff
path: root/vendor/github.com/ReneKroon/ttlcache/.travis.yml
blob: 095be4ff3687568a355e98a2fdb3f7adc2a8c593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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