update dependency #20
Workflow file for this run
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: Render docs" | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- name: Install Sphinx & Dependencies | |
run: pip install sphinx sphinx_markdown_builder sphinx_rtd_theme sphinx-argparse m2r pandas bio distutils | |
- name: Build Documentation | |
run: cd "$GITHUB_WORKSPACE/docs" && sphinx-build . _build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Documentation | |
path: "$GITHUB_WORKSPACE/docs/_build/html/" |