Skip to content

Update __init__.py

Update __init__.py #9

Workflow file for this run

name: Build Docs
on:
push:
branches:
- main
- refactored-template
pull_request:
branches:
- main
- refactored-template
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx pallets_sphinx_themes sphinxcontrib-napoleon sphinxcontrib-log-cabinet sphinx_issues sphinx_tabs
- name: Build Docs
run: |
cd docs
make html
- name: Post-process HTML
run: |
cd docs
python postprocess.py build/html/index.html