Skip to content

Commit 9cdc2cb

Browse files
authored
Merge pull request #2 from lpabon/travis
Travis support
2 parents 93f69fc + 2fc36b1 commit 9cdc2cb

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: go
2+
matrix:
3+
include:
4+
- go: 1.10.3
5+
script:
6+
- go fmt $(go list ./... | grep -v vendor) | wc -l | grep 0
7+
- go vet $(go list ./... | grep -v vendor)
8+
- go test $(go list ./... | grep -v vendor)
9+

cmd/external-snapshotter/main.go

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package main
2+
3+
import "fmt"
4+
5+
func main() {
6+
fmt.Println("vim-go")
7+
}

0 commit comments

Comments
 (0)