From 948b84fe88b3f6cbbe036ad2b5e75b49c2ae6de7 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Thu, 12 Sep 2024 16:50:04 -0600 Subject: [PATCH] good measure --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ddc6526291..0d54a3a725 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -63,7 +63,7 @@ jobs: steps: - name: Troubleshoot id: trouble-shoot - run: echo ${{needs.get-test-infos.outputs.test-infos}} + run: echo ${{toJSON(needs.get-test-infos.outputs.test-infos)}} run-test: name: '${{matrix.tests.name}} | ${{matrix.tests.type}} | ${{matrix.tests.syntax}} | ${{matrix.tests.api}} | ${{matrix.azle_source}}' @@ -94,7 +94,7 @@ jobs: - include_npm: true azle_source: repo # If should_run_tests is false, we still want the steps of this job to execute so that check-run-test-success will run. We do this by creating an array with one dummy element - tests: ${{ fromJson(needs.get-test-infos.outputs.test-infos) }} + tests: ${{ fromJSON(needs.get-test-infos.outputs.test-infos) }} steps: - name: Report full path of test # Just in case the path isn't obvious from the name, this will remove ambiguity