Skip to content

Commit

Permalink
Add protoc installation step to CI workflow
Browse files Browse the repository at this point in the history
This commit adds a step to the Rust CI workflow for installing the `protoc` compiler. It ensures that the protobuf compiler is available in the CI environment, which is necessary for handling protocol buffers in Rust projects.
  • Loading branch information
rsachdeva committed Sep 11, 2024
1 parent 3af7d39 commit 358f3f9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ jobs:
with:
just-version: 1.5.0

- name: Install protoc
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
protoc --version
- name: Install Cargo Lambda
run: |
pip3 install cargo-lambda
Expand Down

0 comments on commit 358f3f9

Please sign in to comment.