FIX typo #17
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: Build docs | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y inkscape | |
sudo apt-get install -y ffmpeg | |
pip install --upgrade pip | |
pip install ffmpeg | |
pip install -q wheel numpy scipy Pillow==9.5.0 matplotlib opencv-python | |
pip install -q ipython Sphinx sphinx-gallery numpydoc sphinx-rtd-theme sphinx-bootstrap-theme | |
pip install -e . --no-build-isolation | |
python -c 'import moten; print(moten.__version__)' | |
- name: Build documents | |
run: | | |
cd docs && make githubio-docs && cd .. | |
touch docs/build/html/.nojekyll | |
- name: Publish to gh-pages if tagged | |
if: startsWith(github.ref, 'refs/tags') | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs/build/html |