diff options
author | xuri <xuri.me@gmail.com> | 2021-06-11 22:48:37 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-06-11 22:48:37 +0800 |
commit | 83e12cc4e5242904366a51f642596acbc9f9dd56 (patch) | |
tree | af3d4ecbebdd19b55bc0651d5e88bc0bc6683850 /README_zh.md | |
parent | 38162539b61b2b429b0498198ed58e1ef53d284b (diff) |
support escaped string literal basic string and use GitHub Action instead of TravisCI
- Note that: travis-ci.org will shutdown on June 15th, 2021, and I don't have enough permission to migrate this project to travis-ci.com currently
Diffstat (limited to 'README_zh.md')
-rw-r--r-- | README_zh.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/README_zh.md b/README_zh.md index b8c0201..4e1f56f 100644 --- a/README_zh.md +++ b/README_zh.md @@ -1,7 +1,7 @@ <p align="center"><img width="650" src="./excelize.svg" alt="Excelize logo"></p> <p align="center"> - <a href="https://travis-ci.org/360EntSecGroup-Skylar/excelize"><img src="https://travis-ci.org/360EntSecGroup-Skylar/excelize.svg?branch=master" alt="Build Status"></a> + <a href="https://github.com/360EntSecGroup-Skylar/excelize/actions/workflows/go.yml"><img src="https://github.com/360EntSecGroup-Skylar/excelize/actions/workflows/go.yml/badge.svg" alt="Build Status"></a> <a href="https://codecov.io/gh/360EntSecGroup-Skylar/excelize"><img src="https://codecov.io/gh/360EntSecGroup-Skylar/excelize/branch/master/graph/badge.svg" alt="Code Coverage"></a> <a href="https://goreportcard.com/report/github.com/360EntSecGroup-Skylar/excelize"><img src="https://goreportcard.com/badge/github.com/360EntSecGroup-Skylar/excelize" alt="Go Report Card"></a> <a href="https://pkg.go.dev/github.com/360EntSecGroup-Skylar/excelize/v2?tab=doc"><img src="https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white" alt="go.dev"></a> @@ -86,6 +86,10 @@ func main() { fmt.Println(cell) // 获取 Sheet1 上所有单元格 rows, err := f.GetRows("Sheet1") + if err != nil { + fmt.Println(err) + return + } for _, row := range rows { for _, colCell := range row { fmt.Print(colCell, "\t") |