github.com/tunedmystic/hound@v0.0.0-20200829043919-3822fec61e65/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4    - "1.14.x"
     5  
     6  env:
     7    - GO111MODULE=on
     8  
     9  branches:
    10    only:
    11      - master
    12  
    13  cache:
    14    directories:
    15      - $HOME/.cache/go-build  # Build cache
    16      - $HOME/gopath/pkg/mod   # Go modules
    17  
    18  install: make install
    19  
    20  script: make test
    21  
    22  after_success:
    23      - bash <(curl -s https://codecov.io/bash)