summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 177c06c72eef5cdfd0a4c87e98f8c6420f4c89da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: go

go:
  - master
  - tip

before_install:
    - go get -t -v ./...

script: 
    - go test -race -coverprofile=coverage.txt -covermode=atomic `go list ./...`

after_success:
    - bash <(curl -s https://codecov.io/bash)