From 9e61a8ae3189f5ba8190fca0045ceb1cf0547a8c Mon Sep 17 00:00:00 2001 From: Eu-Pin Tien Date: Sat, 10 May 2025 16:06:47 +0100 Subject: [PATCH] Converted ui-tests workflow into a test matrix that uses both the windows-2022 and windows-2025 runners. --- .github/workflows/ui-tests.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 2fd306c280..f063ed7596 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -13,7 +13,14 @@ env: jobs: ui-tests: - runs-on: windows-latest + strategy: + fail-fast: false + matrix: + # Corresponds to Windows Server versions + # See https://github.com/actions/runner-images?tab=readme-ov-file#available-images + os: [windows-2022, windows-2025] + + runs-on: ${{ matrix.os }} steps: - uses: actions/download-artifact@v4 with: