Skip to content

Added tests

Added tests #2

Workflow file for this run

name: documentation
on:
push:
branches:
- main
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install Sphinx sphinx-rtd-theme sphinx-mdinclude
- name: Generate documentation with Sphinx
run: |
make docs
touch docs/_build/html/.nojekyll
- name: Publish docs
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/_build/html/