github.com/shivakar/gdupes@v0.0.0-20180726052558-d5c070c306d0/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4    - 1.10.3
     5  
     6  install:
     7    - go get github.com/stretchr/testify
     8    - go get github.com/spf13/cobra
     9    - go get github.com/shivakar/xxhash
    10    - ./create_hardlinks.sh
    11  
    12  script:
    13    - go test -v -race -cover -coverprofile=coverage.txt -covermode=atomic ./...
    14  
    15  after_success:
    16    - bash <(curl -s https://codecov.io/bash)