1
0
Fork 0
mirror of https://github.com/emojisum/emojisum.git synced 2024-11-14 11:58:37 +00:00
emojisum/.travis.yml
Vincent Batts d100da0a0f
travis: more golang versions
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-11-17 11:31:08 -05:00

23 lines
429 B
YAML

language: go
go:
- 1.x
- 1.9.x
- 1.8.x
- 1.7.x
- 1.6.x
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/emojisum && ln -sf $(pwd) $GOPATH/src/github.com/emojisum/emojisum
- go get -d ./...
install: true
script:
- go vet ./...
- golint -set_exit_status ./...
- go test -v ./...
- go build .