Skip to content

Ignore concatenated template entity fragments #3575

Ignore concatenated template entity fragments

Ignore concatenated template entity fragments #3575

Workflow file for this run

---
name: Ruff
on:
pull_request:
push:
workflow_dispatch:
permissions:
contents: read
env:
DEFAULT_PYTHON: "3.14"
jobs:
ruff:
name: Ruff
runs-on: ubuntu-latest
steps:
- name: ‡️ Check out code from GitHub
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: πŸ— Set up uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
enable-cache: true
python-version: ${{ env.DEFAULT_PYTHON }}
- name: πŸ— Install dependencies
run: uv sync --frozen --dev
- name: πŸš€ Run ruff linter
run: uv run ruff check --output-format=github .
- name: πŸš€ Run ruff formatter
run: uv run ruff format --check .