"Fossies" - the Fresh Open Source Software Archive

Member "gdrive-2.1.1/vendor/github.com/sabhiram/go-git-ignore/.travis.yml" (28 May 2021, 468 Bytes) of package /linux/misc/gdrive-2.1.1.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Generic YAML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 language: go
    2 
    3 go:
    4   - 1.3
    5   - tip
    6 
    7 env:
    8   - "PATH=$HOME/gopath/bin:$PATH"
    9 
   10 before_install:
   11   - go get github.com/stretchr/testify/assert
   12   - go get github.com/axw/gocov/gocov
   13   - go get github.com/mattn/goveralls
   14   - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
   15 
   16 script:
   17   - go test -v -covermode=count -coverprofile=coverage.out
   18   - goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN