Files
gocryptotrader/.github/workflows/proto-lint.yml
dependabot[bot] 9e87855576 build(deps): Bump actions/checkout from 5 to 6 (#2114)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 16:30:26 +11:00

51 lines
1.3 KiB
YAML

name: proto-checks
'on':
- push
- pull_request
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
proto-lint:
name: proto-checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
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
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- 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