Debugging cadnanov2 export of paranemic crossovers when both segments… #232
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 Check" | |
on: pull_request | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2.3.4 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install Sphinx | |
run: | | |
python -m pip install --upgrade pip | |
pip install sphinx sphinx_rtd_theme openpyxl | |
- name: Move to docs folder and build | |
run: | | |
cd doc | |
pwd | |
sphinx-build -T -E -W -b html . _build |