mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-25 13:48:53 +08:00
19 lines
455 B
YAML
19 lines
455 B
YAML
language: go
|
|
go:
|
|
- 1.8.x
|
|
- 1.9.x
|
|
|
|
install:
|
|
- mkdir -p $HOME/gopath/src/baliance.com/
|
|
- ln -s $HOME/gopath/src/github.com/baliance/gooxml $HOME/gopath/src/baliance.com/gooxml
|
|
|
|
script:
|
|
- cd $HOME/gopath/src/baliance.com/gooxml
|
|
- ./build-examples.sh
|
|
- go vet ./...
|
|
- go test ./...
|
|
- GOFMT=$(gofmt -d -s .) && echo $GOFMT && test -z "$GOFMT"
|
|
|
|
after_success:
|
|
- ./test-coverage.sh
|