Merge pull request #6 from PudgyPigeon/feat/add-register-envs #13
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: Docs Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
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 |