We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b3b894 + 3e37a68 commit 6abc96eCopy full SHA for 6abc96e
.travis.yml
@@ -7,15 +7,13 @@ go:
7
8
install:
9
- go get -d -v -t ./...
10
- - go get github.com/haya14busa/goverage
11
- - go get github.com/haya14busa/gosum/cmd/gosumcheck
+ - GO111MODULE=off go get github.com/haya14busa/gosum/cmd/gosumcheck
12
13
before_script:
14
- vim --cmd version --cmd quit
15
16
script:
17
- - go test -v -race ./...
18
- - goverage -coverprofile=coverage.txt ./...
+ - go test -v -race -coverpkg=./... -coverprofile=coverage.txt ./...
19
- bash go/generate.sh
20
- (! git diff | grep '^') # check diff
21
- gosumcheck ./...
go.mod
@@ -0,0 +1,3 @@
1
+module github.com/vim-jp/go-vimlparser
2
+
3
+go 1.14
0 commit comments