Update on endpoints, order types, and unit tests #1528
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.23.x | |
- name: Setup build depends | |
run: | | |
go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway@latest | |
go install github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2@latest | |
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest | |
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest | |
- 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 |