Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/build_jb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
pull_request:
branches:
- '*' # Pull requests to all branches

jobs:
build-jupyter-book:
runs-on: macos-latest

steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Checkout repository
uses: actions/checkout@v4

- name: Install dependencies
run: |
pip install -r practicals_jn_book/requirements.txt
pip install jupyter-book

- name: Build documentation (only on macos-latest)
run: jupyter-book build practicals_jn_book --all
1 change: 0 additions & 1 deletion practicals_jn_book/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
python>=3.9
pandas>=2.2
numpy>=2.2
scikit-learn==1.6.1
Expand Down