summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 142bea8f827d29d2c6079b305119c46b0757d0dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: go

sudo: false

go:
  - "1.8"
  - "1.9"
  - "1.10"
  - tip

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

script:
  - ./.travis/tests.sh

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