feat: bootstrap clickthrough server, skill docs, and syntax CI
All checks were successful
python-syntax / syntax-check (push) Successful in 29s

This commit is contained in:
2026-04-05 19:59:39 +02:00
parent 6f9eedcc7a
commit 4aa51e2d69
12 changed files with 844 additions and 3 deletions

View File

@@ -0,0 +1,29 @@
name: python-syntax
on:
push:
pull_request:
jobs:
syntax-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Syntax check (py_compile)
run: |
files=$(git ls-files '*.py')
if [ -z "$files" ]; then
echo "No Python files found"
exit 0
fi
python -m py_compile $files
- name: Compile all (sanity)
run: python -m compileall -q server examples