From a6f04d0914e7a2e52f4d7b2a0fe2a8187e0ad55f Mon Sep 17 00:00:00 2001 From: Yves Fridelance Date: Thu, 26 Feb 2026 16:46:27 +0100 Subject: [PATCH] fix: declare explicit matrix axes for GitHub Actions GitHub Actions requires matrix dimensions to be explicitly declared, not only via 'include'. Using include-only causes 'Unrecognized named-value: matrix' errors when referencing matrix.shell in steps. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 02efc66..fe72531 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,11 +13,9 @@ jobs: strategy: fail-fast: false matrix: + os: [ubuntu-latest, windows-latest] + shell: [pwsh] include: - - os: ubuntu-latest - shell: pwsh - - os: windows-latest - shell: pwsh - os: windows-latest shell: powershell