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: Format Check
permissions:
contents: read
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
format-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 black
- name: Run format check
run: black --check --line-length=127 --exclude='/(docs|.git|__pycache__|.venv|venv|build|dist)/' .