Skip to content

Fix remote file system (get/put) (#1955) #2

Fix remote file system (get/put) (#1955)

Fix remote file system (get/put) (#1955) #2

Workflow file for this run

name: Docs Build
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
docs_warnings:
name: Docs Warnings
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: "0"
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Report Sphinx Warnings
id: sphinx-warnings
run: |
sudo apt-get install python3-sphinx
pip install -r doc-requirements.txt
cd docs && SPHINXOPTS="-W" make html