mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-23 15:10:15 +00:00
* build/linters: Bump Go to v1.25 and golangci-lint to v2.4.0 * refactor: Update TODO comments for net.Listen and net.DialTimeout; improve variable naming in websocket and exchange methods * refactor: Rename massageMissingData to backfillMissingData for clarity and update references in RSI and MFI calculations * fix: Correct typo in TODO comment for net.Listen in RPC server
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: proto-checks
|
|
'on':
|
|
- push
|
|
- pull_request
|
|
jobs:
|
|
proto-lint:
|
|
name: proto-checks
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: 1.25.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/buf-setup-action@v1.50.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
|