Skip to content

Commit

Permalink
Merge pull request #2 from lpabon/travis
Browse files Browse the repository at this point in the history
Travis support
  • Loading branch information
saad-ali authored Jul 12, 2018
2 parents 93f69fc + 2fc36b1 commit 9cdc2cb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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)

7 changes: 7 additions & 0 deletions cmd/external-snapshotter/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "fmt"

func main() {
fmt.Println("vim-go")
}

0 comments on commit 9cdc2cb

Please sign in to comment.