Skip to content

Add Docs test action #1

Add Docs test action

Add Docs test action #1

Workflow file for this run

name: Build and Test Documentation
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- 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 docs/requirements.txt
- name: Build documentation
run: |
cd docs
make html
- name: Check spelling
run: |
cd docs
make spelling