Skip to content

Update EVGumbel.py

Update EVGumbel.py #15

Workflow file for this run

name: deploy-book
on:
push:
branches:
- main
permissions:
contents: write
pages: write
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Build the book
run: |
jupytext --to myst src/*/*.py
jupyter-book build --all --builder=html src
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: src/_build/html