Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: upgrade implementation of GRPC (from grpcio to tonic) #18

Merged
merged 12 commits into from
Nov 10, 2022
Merged
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Setup Build Environment
run: |
apt update
apt install --yes gcc g++ libssl-dev pkg-config cmake
apt install --yes gcc g++ libssl-dev pkg-config cmake protobuf-compiler
rm -rf /var/lib/apt/lists/*
- name: Install Clippy
run: |
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
- name: Setup Build Environment
run: |
apt update
apt install --yes gcc g++ libssl-dev pkg-config cmake
apt install --yes gcc g++ libssl-dev pkg-config cmake protobuf-compiler
rm -rf /var/lib/apt/lists/*
- name: Run Test
run: |
Expand Down
Loading