...

Text file src/github.com/PaesslerAG/gval/.travis.yml

Documentation: github.com/PaesslerAG/gval

     1language: go
     2
     3before_install:
     4  - go get golang.org/x/tools/cmd/cover
     5  - go get github.com/mattn/goveralls
     6
     7script:
     8- go test -bench=. -benchmem -timeout 9m -coverprofile coverage.out
     9- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken=$COVERALLS_TOKEN
    10- go test -bench=Random -benchtime 3m -timeout 9m -benchmem -coverprofile coverage.out
    11
    12go: "1.15"

View as plain text