Skip to content

Align spellcheck action with SoftwareDevLabs/SDLC_core #36

Align spellcheck action with SoftwareDevLabs/SDLC_core

Align spellcheck action with SoftwareDevLabs/SDLC_core #36

Workflow file for this run

# Python Style Check
# This workflow checks Python code style using flake8
name: Python Style Check
permissions:
contents: read
on:
push:
paths:
- '**.py'
pull_request:
paths:
- '**.py'
jobs:
flake8-lint:
runs-on: ubuntu-latest
steps:
- name: Setup Python Environment
uses: ./.github/actions/setup-python-env
with:
python-version: '3.11'
- name: Run flake8
run: flake8 src/ --count --select=E9,F63,F7,F82 --show-source --statistics