fix[next][dace]: Better usage of SubgraphContext during SDFG lowering
#4236
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: "Test examples in documentation" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| # First job to read Python versions from .python-versions file | |
| get-python-versions: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| python-versions: ${{ steps.get-versions.outputs.python-versions }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - id: get-versions | |
| uses: ./.github/actions/get-python-versions | |
| # Test-running job | |
| test-notebooks: | |
| needs: get-python-versions | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| python-version: ${{ fromJSON(needs.get-python-versions.outputs.python-versions) }} | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv and set the python version | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| python-version: ${{ matrix.python-version }} | |
| - name: Run 'docs' nox session | |
| shell: bash | |
| run: ./noxfile.py -s 'test_examples-${{ matrix.python-version }}' |