meta: fix CI

This commit is contained in:
Chris Felegy 2018-11-05 17:32:43 -05:00
parent 84aeb76f76
commit 53ed8491f9
2 changed files with 10 additions and 3 deletions

View File

@ -2,6 +2,4 @@ language: go
go: go:
- "1.10" - "1.10"
install: go get -t ./... install: go get -t ./...
script: script: go test ./...
- go test
- go build ./example/...

9
example/example_test.go Normal file
View File

@ -0,0 +1,9 @@
package main
import (
"testing"
)
// test that the example package compiles
func TestCompiles(t *testing.T) {
}