We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0173c0d commit 14d0086Copy full SHA for 14d0086
1 file changed
.github/workflows/unit-tests-recipes.yml
@@ -100,7 +100,12 @@ jobs:
100
uses: actions/checkout@v4
101
102
- name: Run tests
103
- run: ./ci/recipes_local_test.py ${{ fromJson(needs.changed-dirs.outputs.dirs) }}
+ env:
104
+ DIRS_JSON: ${{ needs.changed-dirs.outputs.dirs }}
105
+ run: |
106
+ # Convert JSON array to space-separated arguments
107
+ DIRS_ARGS=$(echo "$DIRS_JSON" | jq -r '.[]' | tr '\n' ' ')
108
+ ./ci/recipes_local_test.py $DIRS_ARGS
109
110
verify-recipe-tests:
111
# This job checks the status of the unit-tests matrix and fails if any matrix job failed or was cancelled.
0 commit comments