Skip to content

Commit

Permalink
Add travis.yaml (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha authored May 30, 2018
1 parent dd234fb commit 6b59ef2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Created by .ignore support plugin (hsz.mobi)
### Go template
# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
Expand All @@ -10,9 +8,6 @@ _obj
_test

# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out

*.cgo1.go
*.cgo2.c
_cgo_defun.c
Expand All @@ -25,12 +20,11 @@ _testmain.go
*.test
*.prof

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# external packages folder
dist/
.idea/
**/node_modules/
dist/
pki/
**/junit.xml
**/.env
.vscode/
apiserver.local.config/
coverage.txt
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: go
go:
- 1.x
- tip

install: true

script:
- go build ./...
- ./hack/coverage.sh

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

0 comments on commit 6b59ef2

Please sign in to comment.