Skip to content

Ensure appropriate results after refactoring. #15

Ensure appropriate results after refactoring.

Ensure appropriate results after refactoring. #15

Workflow file for this run

name: Build and Deploy Docs
on:
push:
branches: [main, dev_org]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[dev]'
pip install sphinx sphinx-rtd-theme sphinx-autodoc-typehints
- name: Build docs
run: |
cd docs
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html