Skip to content

Commit 7f2bdfa

Browse files
committed
add badge to codecov
1 parent 90dc3de commit 7f2bdfa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,19 @@
33
<p align="center">
44
<img src="https://goreportcard.com/badge/github.com/link-duan/excel-formula-parser"/>
55
<img src="https://github.com/link-duan/excel-formula-parser/actions/workflows/go.yml/badge.svg"/>
6-
<img src="https://raw.githubusercontent.com/link-duan/excel-formula-parser/badges/.badges/main/coverage.svg"/>
6+
<a href="https://codecov.io/gh/link-duan/excel-formula-parser" >
7+
<img src="https://codecov.io/gh/link-duan/excel-formula-parser/graph/badge.svg?token=MN0H60O7LB"/>
8+
</a>
79
</p>
810

911
## Supportted syntax
12+
1013
- [x] Math operations (eg. `+ - * / ^ %`)
1114
- [x] Cell references ( Absolute & Relative. eg. `$A$1` `A1:B2` )
1215
- [x] Function call
1316

1417
## Usage
18+
1519
```go
1620
ast, _ := excelformulaparser.NewParser("=SUM(A1:B2, C$3, 4:4)").Parse()
1721
fmt.Printf("%v", ast)

0 commit comments

Comments
 (0)