github.com/goguardian/glide@v0.0.0-20160311175917-84255172e124/.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  install: make bootstrap
    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    - GO15VENDOREXPERIMENT=1 make test
    23  
    24  notifications:
    25    irc: "irc.freenode.net#masterminds"