This commit is contained in:
Jesse Newland
2019-02-09 20:39:09 -06:00
parent de62a2eece
commit 3198627879
19 changed files with 1077 additions and 19 deletions

18
vendor/github.com/sabhiram/go-gitignore/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,18 @@
language: go
go:
- 1.3
- tip
env:
- "PATH=$HOME/gopath/bin:$PATH"
before_install:
- go get github.com/stretchr/testify/assert
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- go test -v -covermode=count -coverprofile=coverage.out
- goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN