Skip to content

Update documentation - restructure the documentation and include more examples #5

Update documentation - restructure the documentation and include more examples

Update documentation - restructure the documentation and include more examples #5

Workflow file for this run

name: Documentation Build Check
on:
pull_request:
branches:
- main
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
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 -r ./requirements.txt
- name: Build the Documentation
run: |
make html