Skip to content

Merge branch 'main' of /home/jake/github/pysindy-example #4

Merge branch 'main' of /home/jake/github/pysindy-example

Merge branch 'main' of /home/jake/github/pysindy-example #4

Workflow file for this run

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 sphinx nbsphinx
- name: Build docs
run: |
cd docs
sphinx-build -Wb html source build