meta: fix CI
This commit is contained in:
parent
84aeb76f76
commit
53ed8491f9
|
@ -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/...
|
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
// test that the example package compiles
|
||||||
|
func TestCompiles(t *testing.T) {
|
||||||
|
}
|
Loading…
Reference in New Issue