1
0
Fork 0
mirror of https://github.com/emojisum/emojisum.git synced 2024-11-13 19:38:38 +00:00
emojisum/.travis.yml
Vincent Batts 0c995c4059
main: vet, lint, and travis
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2016-12-13 13:18:58 -05:00

20 lines
397 B
YAML

language: go
go:
- 1.7.4
- 1.6.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/emojisum
- go get -d ./...
install: true
script:
- go vet ./...
- golint -set_exit_status ./...
- go test -v ./...
- go build .