Skip to content

Update ci.yml

Update ci.yml #25

Workflow file for this run

name: Code Quality Assurance
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
style-compliance:
name: Code Hygiene Enforcement
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout Repository
uses: actions/checkout@v4
- name: 🐍 Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: 📦 Provision Linting Binaries
run: |
python -m pip install --upgrade pip
pip install flake8
# Dynamic workspace root target avoiding directory conflicts
- name: 🚀 Verify PEP 8 Alignment
run: flake8 . --ignore=W293,W291,F401,E302,E305,E701,E203,E501,E261 --exclude=venv,.git,__pycache__,build,dist