Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ env:

jobs:
ui-tests:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice! I had not realized that you could use strategy in a workflow_call-able workflow...

# 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:
Expand Down
Loading