12345678910111213141516171819 |
- language: go
- sudo: required
- dist: trusty
- env:
- - GOTAGS=
- - GOTAGS=libsqlite3
- - GOTAGS=trace
- - GOTAGS=vtable
- go:
- - 1.7.x
- - 1.8.x
- - 1.9.x
- - master
- before_install:
- - go get github.com/mattn/goveralls
- - go get golang.org/x/tools/cmd/cover
- script:
- - $HOME/gopath/bin/goveralls -repotoken 3qJVUE0iQwqnCbmNcDsjYu1nh4J4KIFXx
- - go test -race -v . -tags "$GOTAGS"
|