Skip to content

docs: add development setup instructions #45

docs: add development setup instructions

docs: add development setup instructions #45

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
documentation-structure:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check documentation structure
run: |
# Verify required documentation files exist
test -f docs/quickstart.md || { echo "Error: docs/quickstart.md missing"; exit 1; }
test -f docs/architecture.md || { echo "Error: docs/architecture.md missing"; exit 1; }
test -f docs/tutorial.md || { echo "Error: docs/tutorial.md missing"; exit 1; }
test -f docs/api-reference.md || { echo "Error: docs/api-reference.md missing"; exit 1; }
echo "All required documentation files present"