Skip to content

Commit

Permalink
good measure
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Sep 12, 2024
1 parent df783e9 commit 948b84f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}'
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 948b84f

Please sign in to comment.