tile38/vendor/github.com/mmcloughlin/geohash/.travis.yml

17 lines
388 B
YAML
Raw Normal View History

language: go
go:
- 1.3.x
2020-09-23 02:43:58 +03:00
- 1.12.x
- 1.13.x
- 1.x
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/klauspost/asmfmt/cmd/asmfmt
script:
- test -z "$(asmfmt -l *.s)"
- go test -v -covermode=count -coverprofile=profile.cov
after_success:
- goveralls -coverprofile=profile.cov -service=travis-ci