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 3ccaf95 commit 2ba79beCopy full SHA for 2ba79be
.github/workflows/ci.yml
@@ -80,7 +80,7 @@ jobs:
80
echo "workflow passed"
81
export STATUS=0
82
elif [[ "${{ steps.action-run.outcome }}" == "failure" && ${{ matrix.expected-failure }} == "true" ]]; then
83
- # normal pass
+ # expected failure
84
echo "workflow xfailed"
85
86
else
minimum_versions.py
@@ -107,8 +107,8 @@ def parse_environment(text):
107
for dep in env["dependencies"]:
108
spec, warnings_ = Spec.parse(dep)
109
110
- warnings.append(warnings_)
111
specs.append(spec)
+ warnings.append(warnings_)
112
113
return specs, warnings
114
0 commit comments