chore(deps): update all dependencies #443
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: docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pages: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 | |
| - run: | | |
| curl -sSL https://install.python-poetry.org | python3 - --version 1.5.1 | |
| pip install mkdocs mkdocs-material mkdocstrings-python | |
| - name: Deploy to GitHub Pages | |
| if: github.ref_name == 'main' | |
| run: mkdocs gh-deploy --force | |
| - name: Build Docs | |
| if: github.ref_name != 'main' | |
| run: mkdocs build |