Files
gonic/vendor/github.com/twinj/uuid/.travis.yml
2019-03-29 17:14:33 +00:00

35 lines
522 B
YAML

language: go
sudo: false
go_import_path: github.com/myesui/uuid
go:
- 1.8
- 1.7
- 1.6
os:
- linux
- osx
env:
global:
- PATH=$HOME/gopath/bin:$PATH
before_script:
- gofmt -s -l -e .
- go vet ./...
before_install:
- go get -t -v ./...
- go get github.com/mattn/goveralls
script:
- go test -v -race github.com/myesui/uuid
- go test -v -covermode=count -coverprofile=cover.out
- goveralls -coverprofile=cover.out -service=travis-ci
notifications:
email: true