...

Text file src/github.com/go-playground/universal-translator/.travis.yml

Documentation: github.com/go-playground/universal-translator

     1language: go
     2go:
     3  - 1.13.4
     4  - tip
     5matrix:
     6  allow_failures:
     7    - go: tip
     8
     9notifications:
    10  email:
    11    recipients: dean.karn@gmail.com
    12    on_success: change
    13    on_failure: always
    14
    15before_install:
    16  - go install github.com/mattn/goveralls
    17
    18# Only clone the most recent commit.
    19git:
    20  depth: 1
    21
    22script:
    23  - go test -v -race -covermode=atomic -coverprofile=coverage.coverprofile ./...
    24
    25after_success: |
    26  [ $TRAVIS_GO_VERSION = 1.13.4 ] &&
    27  goveralls -coverprofile=coverage.coverprofile -service travis-ci -repotoken $COVERALLS_TOKEN

View as plain text