Update 29_Serializing_Pipelines.ipynb with correct model #409
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: Verify tutorials generation | |
| on: | |
| pull_request: | |
| paths: | |
| - "tutorials/*.ipynb" | |
| - "index.toml" | |
| jobs: | |
| run-tutorials: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install dependencies | |
| run: pip install -r requirements.txt | |
| - name: Generate all tutorials | |
| run: | | |
| mkdir output | |
| python scripts/generate_markdowns.py --index index.toml --notebooks all --output ./output |