Skip to content

chore: Format docstrings to adhere to PEP 257 guidelines #36

chore: Format docstrings to adhere to PEP 257 guidelines

chore: Format docstrings to adhere to PEP 257 guidelines #36

Workflow file for this run

name: apidocs
on:
- push
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install requirements for documentation generation
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install pytest pydoctor>=22.3.0 .
- name: Generate API documentation with pydoctor
run: |
# Run simple pydoctor build
pydoctor \
--project-name=PyDocSmith \
--project-url=https://github.com/$GITHUB_REPOSITORY \
--html-viewsource-base=https://github.com/$GITHUB_REPOSITORY/tree/$GITHUB_SHA \
--make-html \
--html-output=./apidocs \
--project-base-dir="." \
--docformat=restructuredtext \
--system-class=PyDocSmith.tests._pydoctor.HidesTestsPydoctorSystem \
--intersphinx=https://docs.python.org/3/objects.inv \
./PyDocSmith
- name: Push API documentation to Github Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.PYDOCSMITH_DEPLOY }}
publish_dir: ./apidocs
commit_message: "Generate API documentation"