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 f32ef93 commit f755502Copy full SHA for f755502
.github/workflows/ci.yml
@@ -105,14 +105,14 @@ jobs:
105
script: |
106
function Test-Value ($expression, $expected) {
107
$actual = Invoke-Expression $expression
108
- if ("$actual" -cne $expected) {
+ if ($actual -cne $expected) {
109
throw "Failed assertion:'$expression' evaluated to '$actual', expected '$expected'."
110
}
111
112
Test-Value '$github.token' '${{ github.token }}'
113
Test-Value '$job.status' '${{ job.status }}'
114
Test-Value '$runner.os' '${{ runner.os }}'
115
- Test-Value '$strategy."fail-fast"' '${{ strategy.fail-fast }}'
+ Test-Value '$strategy."fail-fast"' ([bool]'${{ strategy.fail-fast }}')
116
Test-Value '$matrix.os' '${{ matrix.os }}'
117
118
# Get-ActionInput
0 commit comments