We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39743b6 commit abcf83fCopy full SHA for abcf83f
‎.github/workflows/workflow.yml
@@ -160,7 +160,7 @@ jobs:
160
name: Gather-Tests
161
runs-on: ubuntu-latest
162
outputs:
163
- TestSuites: ${{ fromJson(steps.Gather-Tests.outputs.result).TestSuites }}
+ Tests: ${{ fromJson(steps.Gather-Tests.outputs.result).Tests }}
164
steps:
165
- name: Checkout Code
166
uses: actions/checkout@v4
@@ -207,16 +207,11 @@ jobs:
207
Write-Output $output
208
Set-GitHubStepSummary -Summary $output
209
210
-
211
212
213
214
215
TestModuleLocal:
216
needs:
217
- Gather-Tests
218
strategy:
219
- matrix: ${{ fromJson(needs.Gather-Tests.outputs.TestSuites) }}
+ matrix: ${{ needs.Gather-Tests.outputs.Tests }}
220
runs-on: ${{ matrix.OS }}
221
222
- name: Test
0 commit comments