Skip to content

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

Improved logic around command execution status in manage_commands.py

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

Workflow file for this run

name: Syntax Check
permissions:
contents: read
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
syntax-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.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; else echo "No requirements.txt found"; fi
- name: Run syntax check
run: python scripts/check_syntax.py