github.com/daniel-garcia/glide@v0.0.0-20160218012856-2eab91fab790/.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  
     8  # Setting sudo access to false will let Travis CI use containers rather than
     9  # VMs to run the tests. For more details see:
    10  # - http://docs.travis-ci.com/user/workers/container-based-infrastructure/
    11  # - http://docs.travis-ci.com/user/workers/standard-infrastructure/
    12  sudo: false
    13  
    14  install: make bootstrap
    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    irc: "irc.freenode.net#masterminds"