Skip to content

Python Syntax Check #101

Python Syntax Check

Python Syntax Check #101

Workflow file for this run

name: Python Syntax Check
on:
workflow_dispatch:
#push:
#pull_request:
jobs:
check-syntax:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Check Python syntax
run: |
echo "🔍 Checking syntax..."
python -m compileall -q .