Skip to content

update submodule

update submodule #705

Workflow file for this run

name: Check Jupyter Notebooks
on: [push]
jobs:
check-jupyter:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'
fetch-depth: 0 # Fetch all history for proper git operations
- name: Run Jupyter notebook validation
run: make check-jupyter
- name: Report status
if: ${{ failure() }}
run: |
echo "::error::Jupyter notebook validation failed. Please ensure all notebooks are properly synced and content hashes are up-to-date."