Skip to content

Commit

Permalink
z
Browse files Browse the repository at this point in the history
  • Loading branch information
hanl5 committed Jun 12, 2024
1 parent dabeb66 commit dde832d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 14 deletions.
24 changes: 12 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,48 +8,48 @@ updates:
- package-ecosystem: "maven"
directory: "hello-grpc-java"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "gomod"
directory: "hello-grpc-go"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "cargo"
directory: "hello-grpc-rust"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "pip"
directory: "hello-grpc-python"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "npm"
directory: "hello-grpc-nodejs"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "nuget"
directory: "hello-grpc-csharp"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "pub"
directory: "hello-grpc-dart"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "composer"
directory: "hello-grpc-php"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "gradle"
directory: "hello-grpc-kotlin"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "swift"
directory: "hello-grpc-swift"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "npm"
directory: "hello-grpc-ts"
schedule:
interval: "monthly"
interval: "weekly"
- package-ecosystem: "pub"
directory: "hello_grpc_flutter"
schedule:
interval: "monthly"
interval: "weekly"
8 changes: 6 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ jobs:
- name: Build
run: |
sudo apt-get install protobuf-compiler
sh init.sh
sh proto2go.sh
go mod tidy
go install github.com/golang/protobuf/protoc-gen-go
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
protoc --go_out=. ./proto/landing.proto
protoc --go-grpc_out="$(pwd)" ./proto/landing.proto
go build -v ./...
- name: Test
Expand Down

0 comments on commit dde832d

Please sign in to comment.