Skip to content
Snippets Groups Projects
Select Git revision
  • b8f2d5a2fc498587354f3a0177761474f0163439
  • master default protected
  • 1.31
  • 4.32.1
  • 4.32.0
  • 4.31.0
  • 4.30.1
  • 4.30.0
  • 4.29.1
  • 4.29.0
  • 4.28.0
  • 4.27.0
  • 4.26.0
  • 4.25.5
  • 4.25.4
  • 4.25.3
  • 4.25.2
  • 4.25.1
  • 4.25.0
  • 4.24.3
  • 4.24.2
  • 4.24.1
  • 4.24.0
23 results

README.md

Blame
  • .travis.yml 713 B
    ---
    language: go
    go:
      - '1.10'
      - '1.11'
      - '1.12'
    
    script:
      - make lint
      - make testci
    
    after_success:
      # Upload test coverage results to codecov.io
      # https://github.com/codecov/example-go/blob/b85638743b972bd0bd2af63421fe513c6f968930/README.md
      - bash <(curl -s https://codecov.io/bash)
    
    # With this filter, we aim to restrict Travis's "Build Pushes" feature to build
    # only pushes to master, while allowing the "Build Pull Requests" to build all
    # incoming pull requests without redundant double-builds.
    #
    # This is confusing on Travis's end; this captures the exact problem we're
    # trying to solve:
    # https://stackoverflow.com/a/31882307
    branches:
      only:
        - master
    
    notifications:
      email: false