Skip to content

Merge remote-tracking branch 'origin/main' #54

Merge remote-tracking branch 'origin/main'

Merge remote-tracking branch 'origin/main' #54

Workflow file for this run

name: Docs Build
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install Dependencies
run: |
pip install -r requirements.txt
cd docs
pip install -r requirements_docs.txt
- name: Build Sphinx Documentation
run: |
cd docs
make clean html
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/