summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c942ff16a0b04efb5c51107c2496da39bbd86d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: go
sudo: false
go:
  - 1.7
  - 1.8
  - tip

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

script:
  - ./go.test.sh

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

comment: off