This commit is contained in:
Elio Bischof
2024-11-27 13:11:34 +01:00
parent d4898943f4
commit 74db49e7d2

View File

@@ -46,7 +46,7 @@ jobs:
echo 'matrix=["format --check", "lint", "test:unit", "test:integration", "test:acceptance"]' >> $GITHUB_OUTPUT
fi
- name: Show Matrix
run: echo '${{ fromJson( steps.prepare-matrix.outputs.matrix ) }}'
run: echo '${{ steps.prepare-matrix.outputs.matrix }}'
quality:
name: Ensure Quality
@@ -61,7 +61,7 @@ jobs:
strategy:
fail-fast: false
matrix:
command: '${{ fromJson( needs.prepare-matrix.outputs.matrix ) }}'
command: ${{ needs.prepare-matrix.outputs.matrix }}
steps:
- name: Checkout Repo