Skip to content

Refactor to removve the bundling of R into the binder #9

Refactor to removve the bundling of R into the binder

Refactor to removve the bundling of R into the binder #9

Workflow file for this run

name: Build Book
# Run this on pull requests
on:
pull_request:
branches:
- main
jobs:
build-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Install dependencies
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install -r requirements.txt
# (optional) Cache your executed notebooks between runs
- name: Cache executed notebooks
uses: actions/cache@v3
with:
path: _build/.jupyter_cache
key: jupyter-book-cache-${{ hashFiles('requirements.txt') }}
# Build the book
- name: Build the book
run: |
jupyter-book build .