Adding support for printing to work with a shared volume (cloud environment) #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build docs | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup python for docs | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
cache: 'pip' # caching pip dependencies from requirements.txt below | |
- name: Setup python pip requirements for building docs | |
working-directory: docs | |
run: | | |
pip install -r requirements.txt | |
- name: builds docs | |
working-directory: docs | |
run: | | |
sphinx-build -b html -d _build/doctrees . _build/html |