Skip to content
Snippets Groups Projects
Select Git revision
  • b32628532949b0e1d06ee71569bfc82ec74a1f10
  • main default protected
  • drip-server-timing
  • compress-middleware
  • v2.11.0
  • v2.10.0
  • v2.9.2
  • v2.9.1
  • v2.9.0
  • v2.8.0
  • v2.7.0
  • v2.6.0
  • v2.5.6
  • v2.5.5
  • v2.5.4
  • v2.5.3
  • v2.5.2
  • v2.5.1
  • v2.5.0
  • v2.4.2
  • v2.4.1
  • v2.4.0
  • v2.3.0
  • v2.2.2
24 results

.travis.yml

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