Files
renovate[bot]GitHubrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
0f6f2cdd24 chore(deps): update actions/checkout action to v6 (#1592)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-12 09:52:15 +01:00

37 lines
623 B
YAML

---
name: Code Quality - Ruff
'on':
pull_request:
branches:
- main
push:
branches:
- main
- 'release/**'
permissions:
contents: read
jobs:
ruff:
name: Python Linting and Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Install Ruff
run: pip install ruff
- name: Run Ruff Linting
run: ruff check .
- name: Run Ruff Formatting Check
run: ruff format --check .