seed repo scaffold

This commit is contained in:
timmy 2026-07-08 19:27:19 +00:00
parent b1b0786dc3
commit 2125143359

14
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: ci
on:
push:
paths:
- 'services/**'
- 'docker-compose.yml'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with: {python-version: '3.11'}
- run: python -m py_compile services/*/server.py || true