Skip to content

Commit 8df1902

Browse files
fperot74harture
authored andcommitted
Initial version
1 parent b3a301f commit 8df1902

27 files changed

+2894
-0
lines changed

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.dll
4+
*.so
5+
*.dylib
6+
7+
# Test binary, build with `go test -c`
8+
*.test
9+
10+
# Output of the go coverage tool, specifically when used with LiteIDE
11+
*.out
12+
13+
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
14+
.glide/
15+
16+
**/.DS_Store
17+
.vscode/
18+
vendor/
19+
mock/
20+
bin/
21+
**/debug
22+
**/*.coverprofile
23+
configs/DEV/*

.travis.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: go
2+
sudo: false
3+
go:
4+
- tip
5+
before_install:
6+
- go get github.com/modocache/gover
7+
- go get github.com/mattn/goveralls
8+
- go get golang.org/x/tools/cmd/cover
9+
- go get github.com/golang/dep/cmd/dep
10+
install:
11+
- $GOPATH/bin/dep ensure -v
12+
- $GOPATH/bin/go generate ./...
13+
script:
14+
- go list -f '{{if or (.XTestGoFiles | len) (.TestGoFiles | len) }}"go test -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs -L 1 sh -c
15+
- gover
16+
- goveralls -coverprofile=gover.coverprofile -service=travis-ci

0 commit comments

Comments
 (0)