-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c3a8e7a
commit 0321033
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,12 +47,15 @@ jobs: | |
sudo apt-get update | ||
sudo apt-get install -y protobuf-compiler | ||
protoc --version | ||
- name: Install protoc-gen-go | ||
- name: Install protoc-gen-go and protoc-gen-go-grpc | ||
run: | | ||
go install google.golang.org/protobuf/cmd/[email protected] | ||
go install google.golang.org/grpc/cmd/[email protected] | ||
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | ||
- name: Validate protoc-gen-go | ||
run: which protoc-gen-go | ||
- name: Validate plugins | ||
run: | | ||
which protoc-gen-go | ||
which protoc-gen-go-grpc | ||
- name: Run go generate | ||
run: go generate ./... | ||
working-directory: ${{ matrix.dir }} | ||
|