-
Notifications
You must be signed in to change notification settings - Fork 10
40 lines (38 loc) · 1.24 KB
/
sqlfluff-lint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: SQLFluff Lint
on:
- pull_request
jobs:
lint-models:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Install Python
uses: "actions/setup-python@v5"
with:
python-version: "3.8"
- name: install sqlfluff
run: "pip install sqlfluff"
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v42
with:
files: |
src/queries/**/*.sql
files_ignore: |
**/common*.sql
- name: Get changed .sql files in /src/queries to lint
id: get_files_to_lint
run: |
LINTEES="${{ steps.changed-files.outputs.all_changed_files }}"
echo "lintees=${LINTEES}" >> $GITHUB_OUTPUT
- name: Lint dbt models
id: sqlfluff_json
if: steps.get_files_to_lint.outputs.lintees != ''
run: sqlfluff lint --format github-annotation --annotation-level failure --nofail ${{ steps.get_files_to_lint.outputs.lintees }} > annotations.json
- name: Annotate
uses: yuzutech/[email protected]
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
title: "SQLFluff Lint"
input: "./annotations.json"