1
0
Fork 1
mirror of https://github.com/vbatts/tar-split.git synced 2024-09-29 21:44:13 +00:00
tar-split/.travis.yml
Vincent Batts 3c52e89277 travis: more strict golint
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2016-07-21 13:40:48 -04:00

19 lines
380 B
YAML

language: go
go:
- 1.6
- 1.5.3
sudo: false
before_install:
- git config --global url."https://".insteadOf git://
- go get -u github.com/golang/lint/golint
- mkdir -p $GOPATH/src/github.com/vbatts && ln -sf $(pwd) $GOPATH/src/github.com/vbatts/go-mtree
- go get ./...
install: true
script:
- go vet -x ./...
- golint -set_exit_status ./...
- go test -v ./...