Skip to content

Commit 381032c

Browse files
committed
"Fix matrix OS variable usage in GitHub workflows
Updated PHPUnit.yml to correctly reference the MATRIX_OS environment variable in the 'command' field, ensuring proper output filenames for coverage and test results. Modified RunCommandOnMatrix.yml to explicitly set the MATRIX_OS variable in the environment, guaranteeing consistent and accurate variable access across workflow steps."
1 parent 6d7ba54 commit 381032c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/RunCommandOnMatrix.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,6 @@ jobs:
4949
- name: Install composer dependencies
5050
run: composer install --no-interaction --no-progress --prefer-dist
5151
- name: ${{ inputs.title }}
52-
run: ${{ inputs.command }}
52+
run: ${{ inputs.command }}
53+
env:
54+
MATRIX_OS: ${{ matrix.operating-system }}

0 commit comments

Comments
 (0)