Skip to content

Documentation proofing pass. #7

Documentation proofing pass.

Documentation proofing pass. #7

Workflow file for this run

name: Build Docs
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- uses: actions/checkout@v2
- name: Install with docs dependencies
run: |
pip install .
pip install -r requirements_doc.txt
- name: Build docs
run: |
make -C docs html
- name: Publish to GH Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html
permissions:
contents: write