diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6644878..b9972fe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,15 +6,11 @@ on: jobs: test: name: Test - runs-on: ${{ matrix.os == 'windows-latest' && 'uipath-windows-latest' || 'uipath-ubuntu-latest' }} + runs-on: ${{ matrix.os }} strategy: matrix: python-version: ["3.11", "3.12", "3.13"] - # Stock labels on purpose: GitHub builds the check-run name from these - # matrix values, and branch protection requires the stock names - # ("Test (3.11, ubuntu-latest)"). runs-on below maps them onto the - # uipath- pool, so the jobs run on uipath runners either way. - os: [ubuntu-latest, windows-latest] + os: [uipath-ubuntu-latest, uipath-windows-latest] permissions: contents: read