mirror of https://github.com/tidwall/tile38.git
17 lines
303 B
YAML
17 lines
303 B
YAML
language: go
|
|
sudo: false
|
|
go:
|
|
- 1.5
|
|
|
|
install:
|
|
- go get -t ./...
|
|
- go get github.com/mattn/goveralls
|
|
|
|
script:
|
|
- go fmt ./...
|
|
- go vet ./...
|
|
- go test -v
|
|
- go test -v --race
|
|
- go test -v -covermode=count -coverprofile=coverage.out
|
|
- $HOME/gopath/bin/goveralls -coverprofile coverage.out -service travis-ci
|