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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |