Move Roadmap to come under Architecture #3
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: Publish Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/**' # Only run if you change the docs | |
| - 'mkdocs.yml' | |
| - 'src/**' # Or if you change the source code (for mkdocstrings) | |
| # This permission is required so the action can push the built HTML to the gh-pages branch | |
| permissions: | |
| contents: write | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| enable-cache: true | |
| - name: Install Python and Dependencies | |
| run: | | |
| uv python install 3.12 | |
| uv sync --dev | |
| - name: Build and Deploy to GitHub Pages | |
| run: uv run mkdocs gh-deploy --force |