Merge branch 'main' into update-dataframes-docs #738
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." |