fix: used matrix.name instead of matrix.os for runs-on

This commit is contained in:
2025-06-22 23:52:31 +02:00
parent 10f66eefd2
commit 3689638ba0

View File

@@ -10,7 +10,8 @@ on:
jobs: jobs:
build: build:
runs-on: ${{ matrix.name }} name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy: strategy:
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable. # Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.