Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix[next][dace]: Better usage of SubgraphContext during SDFG lowering #4236

fix[next][dace]: Better usage of SubgraphContext during SDFG lowering

fix[next][dace]: Better usage of SubgraphContext during SDFG lowering #4236

Workflow file for this run

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 }}'