Skip to content

Commit 9e61a8a

Browse files
committed
Converted ui-tests workflow into a test matrix that uses both the windows-2022 and windows-2025 runners.
1 parent 03457ff commit 9e61a8a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ui-tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,14 @@ env:
1313

1414
jobs:
1515
ui-tests:
16-
runs-on: windows-latest
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
# Corresponds to Windows Server versions
20+
# See https://github.com/actions/runner-images?tab=readme-ov-file#available-images
21+
os: [windows-2022, windows-2025]
22+
23+
runs-on: ${{ matrix.os }}
1724
steps:
1825
- uses: actions/download-artifact@v4
1926
with:

0 commit comments

Comments
 (0)