Skip to content

Update production deployment section #82

Update production deployment section

Update production deployment section #82

Workflow file for this run

name: test-sphinx-build
on:
push:
branches:
- develop
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
# should match python version used in .readthedocs.yml
python-version: "3.13"
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build the docs using sphinx
run: |
sphinx-build -M html ./docs ./docs/_build