mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-25 13:48:53 +08:00

* MATCH, IFS, MAXA, MINA * OFFSET fixed * ISBLANK, ISERR, ISERROR, ISEVEN ,ISFORMULA, ISNONTEXT, ISNUMBER, ISODD, ISTEXT * ISLEAPYEAR, ISLOGICAL, ISNA, ISREF * FIND, FINDB * SEARCH, SEARCHB * CONCAT, CONCATENATE * YEAR, YEARFRAC * CONCAT is fixed, now TRUE and FALSE are concatenated instead of 1 and 0 in case of boolean results * NOW, TODAY, TIME, TIMEVALUE * DATE * DATEDIF
20 lines
430 B
YAML
20 lines
430 B
YAML
language: go
|
|
go:
|
|
- 1.8.x
|
|
- 1.9.x
|
|
- 1.10.x
|
|
- 1.11
|
|
|
|
install:
|
|
- mkdir -p $HOME/gopath/src/unidoc/
|
|
- ln -s $HOME/gopath/src/github.com/unidoc/unioffice $HOME/gopath/src/github.com/unidoc/unioffice
|
|
|
|
script:
|
|
- cd $HOME/gopath/src/github.com/unidoc/unioffice
|
|
- ./build-examples.sh
|
|
- go vet ./...
|
|
- go test ./...
|
|
|
|
after_success:
|
|
- ./test-coverage.sh
|