-
Notifications
You must be signed in to change notification settings - Fork 820
48 lines (39 loc) · 1.32 KB
/
proto-lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: proto-checks
'on':
- push
- pull_request
jobs:
proto-lint:
name: proto-checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
- name: Setup build depends
run: |
go get github.com/grpc-ecosystem/grpc-gateway/v2/internal/[email protected]
go get google.golang.org/grpc/cmd/protoc-gen-go-grpc
go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway
go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2
go install google.golang.org/protobuf/cmd/protoc-gen-go
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc
- uses: bufbuild/[email protected]
- name: buf generate
working-directory: ./gctrpc
run: buf generate
- uses: bufbuild/buf-lint-action@v1
with:
input: gctrpc
- name: buf format
run: buf format --diff --exit-code
- name: buf generate backtester
working-directory: ./backtester/btrpc
run: buf generate
- uses: bufbuild/buf-lint-action@v1
with:
input: ./backtester/btrpc
- name: buf format backtester
run: buf format --diff --exit-code