Skip to content

Commit b1c6b92

Browse files
🩹 [Refactor]: Rename Gather-Tests job to Gather-TestSuites and update dependencies in workflow
1 parent a42d3e3 commit b1c6b92

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

‎.github/workflows/workflow.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,22 +148,25 @@ jobs:
148148
Verbose: ${{ inputs.Verbose }}
149149
Version: ${{ inputs.Version }}
150150

151-
Gather-Tests:
151+
Gather-TestSuites:
152152
uses: ./.github/workflows/Gather-Tests.yml
153153
with:
154154
Path: ${{ inputs.Path }}
155155

156156
TestModuleLocal:
157157
needs:
158-
- Gather-Tests
158+
- Gather-TestSuites
159159
strategy:
160-
matrix: ${{ needs.Gather-Tests.outputs.Tests }}
160+
matrix: ${{ needs.Gather-Tests.outputs.TestSuites }}
161161
runs-on: ${{ matrix.OS }}
162162
steps:
163163
- name: Test
164164
shell: pwsh
165165
run: |
166166
$suite = '${{ matrix.Path }}'
167+
if ($IsLinux) {
168+
throw "Linux is not supported"
169+
}
167170
Write-Host "Running test suite: $suite"
168171
169172
Status:

0 commit comments

Comments
 (0)