We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df3c9dc commit 3554cd8Copy full SHA for 3554cd8
1 file changed
.github/workflows/linter.yaml
@@ -62,8 +62,9 @@ jobs:
62
if [[ "${{ steps.ruff-lint.outcome }}" == "failure" || \
63
"${{ steps.ruff-format.outcome }}" == "failure" || \
64
"${{ steps.mypy.outcome }}" == "failure" || \
65
- "${{ steps.pyright.outcome }}" == "failure" || \
66
- "${{ steps.jscpd.outcome }}" == "failure" ]]; then
+ "${{ steps.pyright.outcome }}" == "failure"]]; then
+# Disable due to not to block on "PR too large error"
67
+# "${{ steps.jscpd.outcome }}" == "failure" ]]; then
68
echo "One or more linting/checking steps failed."
69
exit 1
70
fi
0 commit comments