Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
francoispqt committed Jan 18, 2019
0 parents commit d0aa0b0
Show file tree
Hide file tree
Showing 82 changed files with 8,854 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
debug.test
coverage.out
vendor/*
**/**/*.out
16 changes: 16 additions & 0 deletions .travis.yml
@@ -0,0 +1,16 @@
language: go

go:
- "1.10.x"
- "1.11.x"
- master

script:
- go get -u golang.org/x/lint/golint
- make lint
- go get github.com/stretchr/testify github.com/golang/dep/cmd/dep
- dep ensure -v -vendor-only
- ./test.sh

after_success:
- bash <(curl -s https://codecov.io/bash)

0 comments on commit d0aa0b0

Please sign in to comment.