Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Update README with complete documentation and component catalog #4

Update README with complete documentation and component catalog

Update README with complete documentation and component catalog #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install linters
run: pip install ruff
- name: Run ruff
run: ruff check . --output-format=github || true
- name: Check formatting
run: ruff format --check . || true
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate project structure
run: |
echo "Checking project structure..."
for f in README.md LICENSE; do
if [ ! -f "$f" ]; then
echo "MISSING: $f"
exit 1
fi
done
echo "Structure valid"