Skip to content

adding poisson process notes #134

adding poisson process notes

adding poisson process notes #134

Workflow file for this run

name: Publish the book
on:
workflow_dispatch:
push:
branches:
- winter2025
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout the branch
uses: actions/[email protected]
with:
persist-credentials: false
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Build the documentation with Sphinx
run: |
pip install -r requirements.txt
jupyter-book build .
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html