Skip to content

custom workspace example #52

custom workspace example

custom workspace example #52

Workflow file for this run

---
name: "Pull Request Docs Check"
on: [pull_request]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade --requirement ur_documentation/requirements.txt
shell: bash
- name: Build documentation using sphinx
run: |
TZ=UTC sphinx-build ur_documentation/docs/source _build