Skip to content

Make documentation intro and readme more succinct #434

Make documentation intro and readme more succinct

Make documentation intro and readme more succinct #434

Workflow file for this run

name: Deploy documentation website
on: [push, pull_request, workflow_dispatch]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install -e."[develop]"
- name: Build documentation
run: |
sphinx-build docs build/sphinx/
- name: Deploy documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/sphinx/
if: github.event_name == 'push'