Fix bad readme on directory #7
This file contains hidden or 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: Docbuild | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| Docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: "Set up Python" | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: "3.10" | |
| - name: Install doc dependencies | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install pandoc | |
| pip install -r examples/requirements.txt | |
| pip install -r requirements-docs.txt | |
| - name: Build docs | |
| run: | | |
| cd docs | |
| sphinx-build -Wb html source build |