diff --git a/.github/workflows/test-wheel-linux.yml b/.github/workflows/test-wheel-linux.yml index 3c80128bb1..b9acbb68e1 100644 --- a/.github/workflows/test-wheel-linux.yml +++ b/.github/workflows/test-wheel-linux.yml @@ -277,6 +277,15 @@ jobs: LOCAL_CTK: ${{ matrix.LOCAL_CTK }} run: run-tests core + - name: Run cuda.core examples + env: + CUDA_VER: ${{ matrix.CUDA_VER }} + LOCAL_CTK: ${{ matrix.LOCAL_CTK }} + run: | + pushd cuda_core + ${SANITIZER_CMD} pytest -ra -s -vv tests/example_tests/ + popd + - name: Ensure cuda-python installable run: | if [[ "${{ matrix.LOCAL_CTK }}" == 1 ]]; then diff --git a/.github/workflows/test-wheel-windows.yml b/.github/workflows/test-wheel-windows.yml index dc9a31719f..8b1a02ca29 100644 --- a/.github/workflows/test-wheel-windows.yml +++ b/.github/workflows/test-wheel-windows.yml @@ -254,6 +254,16 @@ jobs: shell: bash --noprofile --norc -xeuo pipefail {0} run: run-tests core + - name: Run cuda.core examples + env: + CUDA_VER: ${{ matrix.CUDA_VER }} + LOCAL_CTK: ${{ matrix.LOCAL_CTK }} + shell: bash --noprofile --norc -xeuo pipefail {0} + run: | + pushd cuda_core + ${SANITIZER_CMD} pytest -ra -s -vv tests/example_tests/ + popd + - name: Ensure cuda-python installable run: | if ('${{ matrix.LOCAL_CTK }}' -eq '1') {