Skip to content

Commit f98264d

Browse files
authored
Merge pull request #96 from tieneupin/test-windows-10-and-11
Converted ui-tests workflow into test matrix that runs for windows-2022 and windows-2025
2 parents 03457ff + 9e61a8a commit f98264d

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)