Skip to content

build(deps): Bump platformdirs from 4.9.2 to 4.9.4 in /backend (#74) #181

build(deps): Bump platformdirs from 4.9.2 to 4.9.4 in /backend (#74)

build(deps): Bump platformdirs from 4.9.2 to 4.9.4 in /backend (#74) #181

Workflow file for this run

name: Python Formatting
permissions:
contents: read
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
format-python:
if: false
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black
- name: Run Black formatter check
run: |
echo "🔍 Checking Python code formatting with Black..."
black --check --diff . || (echo "❌ Code formatting issues found. Run 'black .' to fix." && exit 1)