github.com/hiyorimi/geobed@v0.0.0-20190227204948-42ebdc6a8871/.travis.yml (about)

     1  language: go
     2  go:
     3  - 1.x
     4  - 1.3.x
     5  - 1.4.x
     6  - 1.5.x
     7  - 1.6.x
     8  - 1.7.x
     9  - 1.8.x
    10  - 1.9.x
    11  - 1.10.x
    12  - 1.11.x
    13  before_install:
    14  - go get github.com/axw/gocov/gocov
    15  - go get github.com/mattn/goveralls
    16  - go get golang.org/x/tools/cmd/cover
    17  - go get github.com/klauspost/asmfmt/cmd/asmfmt
    18  - go get gopkg.in/check.v1
    19  - go get github.com/mmcloughlin/geohash
    20  script:
    21  - test -z "$(asmfmt -l *.s)"
    22  - go test -v -covermode=count -coverprofile=profile.cov
    23  after_success:
    24  - goveralls -coverprofile=profile.cov -service=travis-ci