File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 46
46
47
47
- name : Test
48
48
run : make test
49
+
50
+ - name : Install goveralls
51
+ run : go install github.com/mattn/goveralls@latest
52
+
53
+ - name : Send coverage
54
+ env :
55
+ COVERALLS_TOKEN : ${{ secrets.GITHUB_TOKEN }}
56
+ run : goveralls -coverprofile=coverage.out -service=github
Original file line number Diff line number Diff line change 1
1
# ClickHouse SQL Parser
2
- [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/AfterShip/clickhouse-sql-parser )] ( https://goreportcard.com/report/github.com/AfterShip/clickhouse-sql-parser ) [ ![ LICENSE] ( https://img.shields.io/github/license/AfterShip/clickhouse-sql-parser.svg )] ( https://github.com/AfterShip/clickhouse-sql-parser/blob/master/LICENSE ) [ ![ GoDoc] ( https://img.shields.io/badge/Godoc-reference-blue.svg )] ( https://godoc.org/github.com/AfterShip/clickhouse-sql-parser )
2
+ [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/AfterShip/clickhouse-sql-parser )] ( https://goreportcard.com/report/github.com/AfterShip/clickhouse-sql-parser ) [ ![ LICENSE] ( https://img.shields.io/github/license/AfterShip/clickhouse-sql-parser.svg )] ( https://github.com/AfterShip/clickhouse-sql-parser/blob/master/LICENSE ) [ ![ GoDoc] ( https://img.shields.io/badge/Godoc-reference-blue.svg )] ( https://godoc.org/github.com/AfterShip/clickhouse-sql-parser )
3
3
4
4
The goal of this project is to build a ClickHouse SQL parser in Go with the following key features:
5
5
@@ -23,7 +23,7 @@ import (
23
23
query := " SELECT * FROM clickhouse"
24
24
parser := clickhouse.NewParser (query)
25
25
// Parse query into AST
26
- statements , err := newParser .ParseStatements ()
26
+ statements , err := parser .ParseStatements ()
27
27
if err != nil {
28
28
return nil , err
29
29
}
You can’t perform that action at this time.
0 commit comments