Merge pull request #3187 from nukisman/patch-5 #221
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: Sphinx | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
sphinx-doc-check: | |
name: Sphinx | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build docs | |
run: | | |
sudo apt-get install -y python3-sphinx | |
pip3 install -r docs/requirements.txt | |
cd docs | |
make html |