unioffice/.travis.yml

16 lines
377 B
YAML

language: go
go:
- 1.8.x
- 1.9.x
- tip
install:
- mkdir -p $HOME/gopath/src/baliance.com/
- ln -s $HOME/gopath/src/github.com/baliance/gooxml $HOME/gopath/src/baliance.com/gooxml
script:
- ./build-examples.sh
- go vet ./...
- go test -v ./...
- GOFMT=$(gofmt -d -s .) && echo $GOFMT && test -z "$GOFMT"