Skip to content

Commit

Permalink
Merge 1dcd7b8 into 2b89dc5
Browse files Browse the repository at this point in the history
  • Loading branch information
johandroz committed Mar 27, 2018
2 parents 2b89dc5 + 1dcd7b8 commit 92d4fff
Show file tree
Hide file tree
Showing 138 changed files with 10,719 additions and 2,469 deletions.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,10 @@
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

vendor/
**/.DS_Store
.vscode/*
vendor/*
bin/*
**/debug
**/*.coverprofile
configs/DEV/*
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: go
sudo: false
go:
- tip
before_install:
- go get github.com/modocache/gover
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/golang/dep/cmd/dep
install:
- $GOPATH/bin/dep ensure -v
script:
- go list -f '{{if or (.XTestGoFiles | len) (.TestGoFiles | len) }}"go test -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs -L 1 sh -c
- gover
- goveralls -coverprofile=gover.coverprofile -service=travis-ci
Loading

0 comments on commit 92d4fff

Please sign in to comment.