Skip to content

Commit 7541fc0

Browse files
authored
Add T-SQL parser in Go with AST types (#3)
1 parent 6118c83 commit 7541fc0

1,030 files changed

Lines changed: 1869 additions & 504 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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: Run tests
21+
run: go test ./...

0 commit comments

Comments
 (0)