File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -148,22 +148,25 @@ jobs:
148
148
Verbose : ${{ inputs.Verbose }}
149
149
Version : ${{ inputs.Version }}
150
150
151
- Gather-Tests :
151
+ Gather-TestSuites :
152
152
uses : ./.github/workflows/Gather-Tests.yml
153
153
with :
154
154
Path : ${{ inputs.Path }}
155
155
156
156
TestModuleLocal :
157
157
needs :
158
- - Gather-Tests
158
+ - Gather-TestSuites
159
159
strategy :
160
- matrix : ${{ needs.Gather-Tests.outputs.Tests }}
160
+ matrix : ${{ needs.Gather-Tests.outputs.TestSuites }}
161
161
runs-on : ${{ matrix.OS }}
162
162
steps :
163
163
- name : Test
164
164
shell : pwsh
165
165
run : |
166
166
$suite = '${{ matrix.Path }}'
167
+ if ($IsLinux) {
168
+ throw "Linux is not supported"
169
+ }
167
170
Write-Host "Running test suite: $suite"
168
171
169
172
Status :
You can’t perform that action at this time.
0 commit comments