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 08e80fc commit 172fde9Copy full SHA for 172fde9
.github/workflows/iwyu.yml
@@ -67,5 +67,5 @@ jobs:
67
echo "include-what-you-use reported ${WARNING_COUNT} warning(s)"
68
# Acceptable limit, to decrease over time down to 0
69
export WARNING_LIMIT=10
70
- # FAIL the build if WARNING_COUNT >= WARNING_LIMIT
71
- exit $(( WARNING_COUNT >= WARNING_LIMIT ? 1 : 0 ))
+ # FAIL the build if WARNING_COUNT > WARNING_LIMIT
+ exit $(( WARNING_COUNT > WARNING_LIMIT ? 1 : 0 ))
0 commit comments