ソースを参照

add travis.yml

Tao Wen 8 年 前
コミット
2dfdcdd9db
1 ファイル変更14 行追加0 行削除
  1. 14 0
      .travis.yml

+ 14 - 0
.travis.yml

@@ -0,0 +1,14 @@
+language: go
+
+go:
+  - 1.8.x
+  - tip
+
+before_install:
+  - go get -t -v ./...
+
+script:
+  - go test -race -coverprofile=coverage.txt -covermode=atomic
+
+after_success:
+  - bash <(curl -s https://codecov.io/bash)