Skip to content

Version 3.0.0 Proposal draft with sqlglot as the parsing library #6

Version 3.0.0 Proposal draft with sqlglot as the parsing library

Version 3.0.0 Proposal draft with sqlglot as the parsing library #6

Workflow file for this run

name: Lint
on:
push:
branches: [ master ]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Poetry
uses: snok/install-poetry@v1.4.1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies with poetry
run: poetry install --no-root
- name: Lint with ruff
run: make lint