meta: fix CI
This commit is contained in:
parent
84aeb76f76
commit
53ed8491f9
|
@ -2,6 +2,4 @@ language: go
|
|||
go:
|
||||
- "1.10"
|
||||
install: go get -t ./...
|
||||
script:
|
||||
- go test
|
||||
- go build ./example/...
|
||||
script: go test ./...
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
// test that the example package compiles
|
||||
func TestCompiles(t *testing.T) {
|
||||
}
|
Loading…
Reference in New Issue