This commit is contained in:
Elio Bischof
2024-11-27 13:09:17 +01:00
parent e12d3c7015
commit c3868977ef

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 ${{ steps.prepare-matrix.outputs.matrix }} | jq
run: echo '${{ steps.prepare-matrix.outputs.matrix }}' | jq
quality:
name: Ensure Quality
@@ -61,7 +61,7 @@ jobs:
strategy:
fail-fast: false
matrix:
command: "${{ fromJson( needs.prepare-matrix.outputs.matrix ) }}"
command: '${{ fromJson( needs.prepare-matrix.outputs.matrix ) }}'
steps:
- name: Checkout Repo