Skip to content

Commit

Permalink
feat: scaffold documentation by pdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
aekasitt committed Dec 7, 2024
1 parent d938098 commit 9f49231
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
- run: export PATH="/root/.local/bin/:$PATH"
- run: export UV_LINK_MODE=copy
- run: pdoc src/**/*.py --output docs/
- uses: actions/upload-pages-artifact@v3
with:
path: docs/

deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4

name: Convert docstrings to Pdoc pages

on:
push:
branches:
- master

permissions:
contents: read
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ pypi-token.pypi
dmypy.json


### Pdoc ###
docs/


### Ruff ###
.ruff_cache

Expand Down

0 comments on commit 9f49231

Please sign in to comment.