github.com/Masterminds/glide@v0.13.4-0.20190710143844-b94b39d657d8/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4    - 1.7.x
     5    - 1.8.x
     6    - 1.9.x
     7    - 1.10.x
     8    - 1.11.x
     9    - 1.12.x
    10    - tip
    11  
    12  # Setting sudo access to false will let Travis CI use containers rather than
    13  # VMs to run the tests. For more details see:
    14  # - http://docs.travis-ci.com/user/workers/container-based-infrastructure/
    15  # - http://docs.travis-ci.com/user/workers/standard-infrastructure/
    16  sudo: false
    17  
    18  # The default script is go test -v ./... which will test everything
    19  # in the vendor directory. We don't need to test all dependent packages.
    20  # Only testing this project.
    21  script:
    22    - make test integration-test verify-version
    23  
    24  notifications:
    25    webhooks:
    26      urls:
    27        - https://webhooks.gitter.im/e/67e4b42cbf763625d0b4
    28      on_success: change
    29      on_failure: always
    30      on_start: never