Skip to content

Update gh-deploy.yml to remove push triggers #149

Update gh-deploy.yml to remove push triggers

Update gh-deploy.yml to remove push triggers #149

Workflow file for this run

name: Format
on:
pull_request:
paths:
- ".github/actions/setup-python-with-uv/action.yml"
- ".github/workflows/format.yml"
- "**.py"
- "**.sql"
- ".python-version"
- ".sqlfluff"
- "pyproject.toml"
- "ruff.toml"
- "uv.lock"
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python with uv
uses: ./.github/actions/setup-python-with-uv
- name: Format by Ruff
run: uv run nox -s fmt -- --ruff
sqlfluff:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python with uv
uses: ./.github/actions/setup-python-with-uv
- name: Format by SQLFluff
run: uv run nox -s fmt -- --sqlfluff