Skip to content

Implement the lexer, AST and parser for the SQLite dialect #23

Implement the lexer, AST and parser for the SQLite dialect

Implement the lexer, AST and parser for the SQLite dialect #23

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go build ./...
- run: go vet ./...
- run: go test -race ./...