Skip to content

Add GitHub action to check dbt yaml key sort order #9

Add GitHub action to check dbt yaml key sort order

Add GitHub action to check dbt yaml key sort order #9

name: Check order for dbt columns
on: [pull_request]
jobs:
check-sorting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyyaml
- name: Run YAML column sorting check
run: python dbt/scripts/check_sort.py .