Skip to content

Commit

Permalink
add .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gnolizuh committed Mar 29, 2018
1 parent 2428d74 commit db3485c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: go

go:
- 1.9.x
- tip

before_install:
- go get -v ./...

script:
- go test -race -coverprofile=coverage.txt -covermode=atomic

after_success:
- bash <(curl -s https://codecov.io/bash)
2 changes: 1 addition & 1 deletion client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func main() {
return &tls.Config{InsecureSkipVerify: true}
}

// transfer data between p1(quic side) and p2(tcp side).
// transfer data between p1(tcp side) and p2(quic side).
transfer := func(p1 io.ReadWriteCloser) {
if !config.Quiet {
fmt.Println("stream opened")
Expand Down

0 comments on commit db3485c

Please sign in to comment.