1language: go
2go:
3  - 1.1
4  - 1.2
5  - 1.3
6  - 1.4
7  - 1.5
8  - 1.6
9  - tip
10install:
11  - go install ./...
12  - go get github.com/BurntSushi/toml-test
13script:
14  - export PATH="$PATH:$HOME/gopath/bin"
15  - make test
16