Skip to content
Snippets Groups Projects
Select Git revision
  • 70f10a7b3e73cc39b576c5c1cb3692612a4c8e09
  • master default protected
  • 0.8.2
  • 0.8.1
  • 0.8.0
  • 0.7.13
  • 0.7.12
  • 0.7.11
  • 0.7.10
  • 0.7.9
  • 0.7.8
  • 0.7.7
  • 0.7.6
  • 0.7.5
  • 0.7.4
  • 0.7.3
  • 0.7.2
  • 0.7.1
  • 0.7.0
  • 0.6.27
  • 0.6.26
  • 0.6.25
22 results

.travis.yml

Blame
  • .travis.yml 731 B
    language: go
    
    go:
      - 1.6.x
      - 1.7.x
      - 1.8.x
      - 1.9.x
      - 1.10.x
      - 1.11.x
      - 1.12.x
      - tip
    
    # Setting sudo access to false will let Travis CI use containers rather than
    # VMs to run the tests. For more details see:
    # - http://docs.travis-ci.com/user/workers/container-based-infrastructure/
    # - http://docs.travis-ci.com/user/workers/standard-infrastructure/
    sudo: false
    
    script:
      - make setup
      - make test
    
    notifications:
      webhooks:
        urls:
          - https://webhooks.gitter.im/e/06e3328629952dabe3e0
        on_success: change  # options: [always|never|change] default: always
        on_failure: always  # options: [always|never|change] default: always
        on_start: never     # options: [always|never|change] default: always