Skip to content

Commit 5dd61a9

Browse files
fix: correct syntax error in MyPy failure condition
1 parent 217811f commit 5dd61a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ runs:
277277
shell: bash
278278

279279
- name: Failure On MyPy Issues
280-
if: steps.run-mypy.outcome == 'failure
280+
if: steps.run-mypy.outcome == 'failure'
281281
run: |
282282
echo "::error file=action.yml,line=181::MyPy found issues. Failing the action."
283283
exit 1

0 commit comments

Comments
 (0)