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 ec16bdf commit d185ce0Copy full SHA for d185ce0
hack/verify-protos.sh
@@ -9,4 +9,9 @@ set -o xtrace
9
source hack/common.sh
10
11
make proto
12
+
13
+# Check if the proto definitions need updating
14
git diff --exit-code || exit_with_msg "Code from protocol definitions is not up to date. Please run 'make proto' and commit the result"
15
16
+# Check the format of the proto files
17
+buf lint || exit_with_msg "The proto files have linting errors. Please run 'buf lint' and fix them before committing"
0 commit comments