Skip to content

Add proposal & Readme file. #11

Add proposal & Readme file.

Add proposal & Readme file. #11

Workflow file for this run

name: Python Syntax Check
on:
pull_request:
branches:
- main # or your default branch
jobs:
syntax-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Check Python syntax
run: |
find . -name "*.py" -print0 | xargs -0 -n1 python -m py_compile