Add Travis CI integration

This commit is contained in:
Sergey Frolov 2017-09-08 15:57:50 -06:00
parent 3b53b610a6
commit dea429d0f0

20
.travis.yml Normal file
View file

@ -0,0 +1,20 @@
language: go
go:
- 1.8.x
- 1.9
sudo: required
dist: trusty
install:
- go get -t ./...
- go get github.com/golang/lint/golint
# Install gometalinter and certain linters
- go get github.com/alecthomas/gometalinter
- go get github.com/client9/misspell/cmd/misspell
- go get github.com/gordonklaus/ineffassign
script:
- go test -race -v .
- gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign --tests .