Skip to content

Commit

Permalink
Merge pull request #11 from moul/moul-patch-1
Browse files Browse the repository at this point in the history
Updated Travis + add coveralls support
  • Loading branch information
moul committed Sep 25, 2015
2 parents e61b3a1 + 67ad2ca commit 1554517
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@ _testmain.go

host_rsa*
id_rsa*

profile.out
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
language: go

go:
- 1.4
- 1.5
- tip

matrix:
allow_failures:
- go: tip

before_install:
- go get -u github.com/axw/gocov/gocov
- go get -u github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover

script:
- make build
- make test
- go run ./cmd/gotty-client/main.go --help || true
- make cover
- goveralls -service=travis-ci -v -covermode=count -coverprofile=profile.out

0 comments on commit 1554517

Please sign in to comment.