From f33ced9ca0cb0cc3fd3a325e095522fa84a270fd Mon Sep 17 00:00:00 2001 From: Tiberiu Baron Date: Mon, 10 Aug 2026 13:39:41 +0300 Subject: [PATCH] chore(ci): run the test matrix on uipath- runners Moves the remaining stock matrix labels onto the uipath- pool, so every job in these workflows uses the centralized managed runners. --- .github/workflows/test.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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