1
0
Fork 0
mirror of https://github.com/vbatts/sl-feeds.git synced 2024-11-22 07:45:39 +00:00
sl-feeds/.travis.yml
Vincent Batts 8f7033da96
travis: adding CI checks
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-02-09 10:18:17 -05:00

20 lines
450 B
YAML

language: go
go:
- 1.7
- 1.6
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/sl-feeds
- go get github.com/vbatts/sl-feeds/...
install: true
script:
- go build github.com/vbatts/sl-feeds/cmd/sl-feeds
- go test ./...
- go vet ./...
- golint -set_exit_status ./...