Skip to content

Commit 335d6e0

Browse files
authored
Merge pull request #628 from rocboss/beta
v0.6.0-alpha.3
2 parents 0e24f7b + 822ad38 commit 335d6e0

File tree

231 files changed

+10535
-10067
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

231 files changed

+10535
-10067
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
name: Test
4848
strategy:
4949
matrix:
50-
go-version: [ 1.22.x, 1.23.x ]
50+
go-version: [ 1.23.x, 1.24.x ]
5151
platform: [ ubuntu-latest, macos-latest ]
5252
runs-on: ${{ matrix.platform }}
5353
steps:
@@ -66,7 +66,7 @@ jobs:
6666
name: TestOnWindows
6767
strategy:
6868
matrix:
69-
go-version: [ 1.21.x, 1.22.x ]
69+
go-version: [ 1.23.x, 1.24.x ]
7070
platform: [ windows-latest ]
7171
runs-on: ${{ matrix.platform }}
7272
steps:

INSTALL.md

Lines changed: 574 additions & 0 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ gen-mir:
8888

8989
.PHONY: gen-rpc
9090
gen-rpc:
91-
@rm -rf auto/rpc auto/connect
91+
@rm -rf auto/rpc
9292
@buf generate proto
93-
@go fmt ./auto/rpc/... ./auto/connect/...
93+
@go fmt ./auto/rpc/...
9494

9595
.PHONY: proto-mod
9696
proto-mod:
@@ -117,12 +117,15 @@ test:
117117
pre-commit: fmt
118118
@go mod tidy
119119

120+
.PHONY: install-tools
121+
install-tools: install-protobuf-plugins
122+
@go install github.com/abice/go-enum@latest
123+
120124
.PHONY: install-protobuf-plugins
121125
install-protobuf-plugins:
122-
@go install github.com/bufbuild/buf/cmd/buf@v1.28.1
123-
@go install github.com/bufbuild/buf/cmd/protoc-gen-buf-breaking@v1.28.1
124-
@go install github.com/bufbuild/buf/cmd/protoc-gen-buf-lint@v1.28.1
125-
@go install connectrpc.com/connect/cmd/protoc-gen-connect-go@latest
126+
@go install github.com/bufbuild/buf/cmd/buf@latest
127+
@go install github.com/bufbuild/buf/cmd/protoc-gen-buf-breaking@latest
128+
@go install github.com/bufbuild/buf/cmd/protoc-gen-buf-lint@latest
126129
@go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest
127130
@go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
128131
@go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest

0 commit comments

Comments
 (0)