github.com/s-urbaniak/glide@v0.0.0-20160527141859-5f5e941b1fc4/.travis.yml (about)

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