Travis support

This commit is contained in:
Luis Pabón
2018-07-11 10:46:56 -07:00
parent 93f69fc950
commit 2fc36b1764
2 changed files with 16 additions and 0 deletions

9
.travis.yml Normal file
View File

@@ -0,0 +1,9 @@
language: go
matrix:
include:
- go: 1.10.3
script:
- go fmt $(go list ./... | grep -v vendor) | wc -l | grep 0
- go vet $(go list ./... | grep -v vendor)
- go test $(go list ./... | grep -v vendor)

View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("vim-go")
}