Skip to content

Commit ec361e6

Browse files
authored
Add token, AST, and lexer packages for ClickHouse parser (#2)
1 parent d035e6f commit ec361e6

File tree

8 files changed

+4939
-0
lines changed

8 files changed

+4939
-0
lines changed

.github/workflows/test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Set up Go
16+
uses: actions/setup-go@v5
17+
with:
18+
go-version: '1.25'
19+
20+
- name: Build
21+
run: go build ./...
22+
23+
- name: Test
24+
run: go test -v ./...

0 commit comments

Comments
 (0)