This is an automated email from the ASF dual-hosted git repository.
guanmingchiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/main by this push:
new 33cd4d3fa [CI] Update notebook check workflow (#869)
33cd4d3fa is described below
commit 33cd4d3fad6d70a6e4718e13a930a570694721cd
Author: Ryan Huang <[email protected]>
AuthorDate: Mon Jan 19 10:25:24 2026 +0800
[CI] Update notebook check workflow (#869)
---
.github/workflows/notebook-testing.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/notebook-testing.yml
b/.github/workflows/notebook-testing.yml
index 04d7ecdd4..2c99dc71d 100644
--- a/.github/workflows/notebook-testing.yml
+++ b/.github/workflows/notebook-testing.yml
@@ -28,7 +28,7 @@ jobs:
- name: Set up Python with uv
uses: astral-sh/setup-uv@v7
with:
- python-version: "3.11"
+ python-version: "3.12"
enable-cache: true
- name: Install dependencies
@@ -38,7 +38,7 @@ jobs:
- name: Run Jupyter Notebooks
run: |
- for nb in examples/*.ipynb; do
+ for nb in $(find . -name '*.ipynb'); do
echo "Executing $nb"
uv run jupyter execute "$nb" --inplace
done