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 a5a1456 commit 53dab29Copy full SHA for 53dab29
‎.github/workflows/Get-TestSuites.yml‎
@@ -104,14 +104,14 @@ jobs:
104
}
105
106
LogGroup 'Source Code Test Suites:' {
107
- if ($skipTests -notcontain 'SourceCode') {
+ if ($skipTests -notcontains 'SourceCode') {
108
$osConfigs | Format-Table -AutoSize | Out-String
109
Set-GitHubOutput -Name SourceCodeTestSuites -Value $osConfigs
110
111
112
113
LogGroup 'Module Test Suites:' {
114
- if ($skipTests -notcontain 'Module') {
+ if ($skipTests -notcontains 'Module') {
115
116
Set-GitHubOutput -Name ModuleTestSuites -Value $osConfigs
117
0 commit comments