1
0
Fork 0
mirror of https://github.com/vbatts/git-validation.git synced 2024-11-17 13:58:39 +00:00
git-validation/.travis.yml
Vincent Batts 00bb98c063 travis: no need to get go vet
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2016-05-03 15:17:15 -04:00

19 lines
328 B
YAML

language: go
go:
- 1.6
- 1.5.3
sudo: false
before_install:
- go get -u github.com/golang/lint/golint
- mkdir -p $GOPATH/src/github.com/vbatts && ln -sf $(pwd) $GOPATH/src/github.com/vbatts/git-validation && go get ./...
install: true
script:
- go vet -x ./...
- golint ./...
- go build .
- go test -v ./...