Travis build script and gitignores
This commit is contained in:
parent
6393ec357e
commit
48cee4ecaa
2 changed files with 11 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/bin
|
||||
/bugs
|
||||
/pkg
|
8
.travis.yml
Normal file
8
.travis.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
language: go
|
||||
go:
|
||||
- 1.7
|
||||
install:
|
||||
- go get github.com/constabulary/gb/...
|
||||
- go get github.com/golang/lint/golint
|
||||
- go get github.com/fzipp/gocyclo
|
||||
script: ./hooks/pre-commit
|
Reference in a new issue