Skip to content

confidence intervals #222

confidence intervals

confidence intervals #222

Workflow file for this run

name: Build and Deploy Jupyter Book
on:
push:
branches:
- main # Trigger the workflow on push to the main branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Jupyter Book
run: pip install jupyter-book==0.15.1
- name: Install Other Dependencies
run: |
pip install -r book/requirements.txt
pip install sphinx-exercise
- name: Build Jupyter Book
run: |
jupyter-book build book/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GH_PAGES_TOKEN }}
publish_dir: ./book/_build/html