Skip to content

Improved logic around command execution status in manage_commands.py #21

Improved logic around command execution status in manage_commands.py

Improved logic around command execution status in manage_commands.py #21

Workflow file for this run

name: Lint Check
permissions:
contents: read
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
lint-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run lint check
run: flake8 . --max-line-length=127 --ignore=E203,W503,E501,W291,E302,E305,E402,E712,E722,F401,F841,F541 --exclude=.git,__pycache__,.venv,venv,build,dist,docs