We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9178a3f commit e580821Copy full SHA for e580821
.github/workflows/lint.yaml
@@ -0,0 +1,23 @@
1
+name: lint
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ tags:
8
+ - '**'
9
+ pull_request:
10
+ workflow_dispatch:
11
12
+jobs:
13
+ protobuf:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
19
+ - name: Check clang-format
20
+ run: clang-format --version
21
22
+ - name: Checking protobuf syntax
23
+ run: clang-format --dry-run --verbose -Werror *.proto
aeon_router.proto
@@ -68,7 +68,9 @@ service AeonRouterService {
68
//
69
70
// Special value denoting null.
71
-enum NullValue { NULL_VALUE = 0; }
+enum NullValue {
72
+ NULL_VALUE = 0;
73
+}
74
75
// Array of arbitrary-typed values.
76
message ArrayValue { repeated Value fields = 1; }
0 commit comments