File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change
1
+ coverage :
2
+ status :
3
+ project :
4
+ default :
5
+ target : 0%
6
+ patch :
7
+ default :
8
+ target : 0%
9
+
10
+ comment : false
Original file line number Diff line number Diff line change @@ -9,12 +9,16 @@ install:
9
9
- go get github.com/mattn/goveralls
10
10
- go get github.com/golang/lint/golint
11
11
- go get honnef.co/go/unused/cmd/unused
12
+ - go get github.com/haya14busa/goverage
12
13
13
14
before_script :
14
15
- vim --cmd version --cmd quit
15
16
16
17
script :
17
18
- go test -v -race ./...
18
- - goveralls -service=travis-ci
19
+ - goverage -coverprofile=coverage.txt ./...
19
20
- vim -u NONE -N --cmd "let &rtp .= ',' . getcwd()" -S go/generate.vim -c ":q"
20
21
- (! git diff | grep '^') # check diff
22
+
23
+ after_success :
24
+ - bash <(curl -s https://codecov.io/bash)
You can’t perform that action at this time.
0 commit comments