aboutsummaryrefslogblamecommitdiffstats
path: root/.travis.yml
blob: 24486d4a0a12781e87fb611dd0f98bffeb9d6957 (plain) (tree)
1
2
3
4
5
6
7
8
9

            
         

         
        

                                                     
                                       
                                       
              


                       
                  
                         
       
                                  
              
                                           
    
         
                                                                                                                                                                                            
           



                                                         
                      
                      
                   
language: go
go:
  - 1.4.2
  - 1.5.4
  - 1.6.2
install:
  # - go get code.google.com/p/go.tools/cmd/goimports
  # - go get github.com/golang/lint/golint
  # - go get golang.org/x/tools/cmd/vet
  - go get golang.org/x/tools/cmd/cover
before_script:
  # - gofmt -l -w .
  # - goimports -l -w .
  # - golint .
  # - go vet ./...
  # - go test -race ./...
script:
  - make travis-test-with-coverage
after_success:
  - bash <(curl -s https://codecov.io/bash)
env:
  global:
    - secure: "U2U1AmkU4NJBgKR/uUAebQY87cNL0+1JHjnLOmmXwxYYyj5ralWb1aSuSH3qSXiT93qLBmtaUkuv9fberHVqrbAeVlztVdUsKAq7JMQH+M99iFkC9UiRMqHmtjWJ0ok4COD1sRYixxi21wb/JrMe3M1iL4QJVS61iltjHhVdM64="
sudo: false
notifications:
  webhooks:
    urls:
      - https://webhooks.gitter.im/e/e09ccdce1048c5e03445
    on_success: change
    on_failure: always
    on_start: false