Skip to content

Instantly share code, notes, and snippets.

@mycaule
Created October 26, 2022 11:32
Show Gist options
  • Save mycaule/5d104f77f3c1aaae6aaa806905de4104 to your computer and use it in GitHub Desktop.
Save mycaule/5d104f77f3c1aaae6aaa806905de4104 to your computer and use it in GitHub Desktop.
name: Lint Queries
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint-everything:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Lint SQL
run: |
pip install sqlfluff==1.3.2
sqlfluff lint queries --dialect ansi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment