From 83e12cc4e5242904366a51f642596acbc9f9dd56 Mon Sep 17 00:00:00 2001 From: xuri Date: Fri, 11 Jun 2021 22:48:37 +0800 Subject: 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 --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 5beea06..972d013 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

Excelize logo

- Build Status + Build Status Code Coverage Go Report Card go.dev @@ -86,6 +86,10 @@ func main() { fmt.Println(cell) // Get all the rows in the 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") -- cgit v1.2.1