Skip to content

Commit ced265d

Browse files
committed
CI: Install protoc in the CI image
Signed-off-by: Alexandru Vasile <[email protected]>
1 parent 4aa54e9 commit ced265d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18+
- name: Install protobuf-compiler
19+
run: |
20+
sudo apt-get update
21+
sudo apt-get install -y protobuf-compiler
22+
protoc --version # Verify installation
23+
1824
- uses: actions/checkout@v3
1925
- name: Build
2026
run: cargo build --verbose

0 commit comments

Comments
 (0)