mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-17 15:09:59 +00:00
Bumps [bufbuild/buf-setup-action](https://github.com/bufbuild/buf-setup-action) from 1.15.1 to 1.16.0. - [Release notes](https://github.com/bufbuild/buf-setup-action/releases) - [Commits](https://github.com/bufbuild/buf-setup-action/compare/v1.15.1...v1.16.0) --- updated-dependencies: - dependency-name: bufbuild/buf-setup-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
name: proto-checks
|
|
'on':
|
|
- push
|
|
- pull_request
|
|
jobs:
|
|
proto-lint:
|
|
name: proto-checks
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.20.x
|
|
|
|
- name: Setup build depends
|
|
run: |
|
|
go get github.com/grpc-ecosystem/grpc-gateway/v2/internal/descriptor@v2.10.0
|
|
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/buf-setup-action@v1.16.0
|
|
|
|
- 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
|