feat[next-dace]: Enable setting gpu_maxnreg attribute in maps #3674
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 Package Root" | |
| 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-package: | |
| 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 'package' tests with nox | |
| shell: bash | |
| run: ./noxfile.py -s test_package-${{ matrix.python-version }} |