Skip to content

Update index.rst

Update index.rst #11

Workflow file for this run

name: Docs
on:
# Update doc on push to master.
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Build Docs
run: pip install .[dev] && make -C docs && touch docs/build/html/.nojekyll
- name: Deploy Docs
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/build/html