Fix memory copies getz #333
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: Run Notebooks | |
| # Test on all pushes, except when the push is literally just a tag (because we | |
| # tag automatically via CI, and therefore there's no extra code in that push). | |
| # Also, only test on pull requests into master/dev. | |
| on: | |
| push: | |
| tags-ignore: | |
| - 'v*' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| jobs: | |
| notebooks: | |
| name: Running Docs Notebooks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| with: | |
| fetch-depth: 1 | |
| - uses: mpi4py/setup-mpi@v1 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.13" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Install | |
| run: | | |
| uv sync --group doctests --locked | |
| - name: Install ipykernel | |
| run: uv run python -m ipykernel install --user --name matvis --display-name "matvis" | |
| - name: Run Notebooks | |
| run: | | |
| uv run papermill -k matvis docs/tutorials/matvis_tutorial.ipynb tmp.ipynb |