Skip to content

Commit 4d70970

Browse files
🩹 [Fix]: Correct variable reference for testsPath in Gather-Tests workflow
1 parent 74d93c3 commit 4d70970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎.github/workflows/Gather-Tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
}
5050
5151
$testSuites = @()
52-
$testSuites += Get-ChildItem -Path testsPath -Directory
52+
$testSuites += Get-ChildItem -Path $testsPath -Directory
5353
if (-not $testSuites) {
5454
$testSuites += @($testsPath)
5555
}

0 commit comments

Comments
 (0)