From ad9009de7dfbd2ef56c9717a18e92d97e4806d35 Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Wed, 23 Aug 2023 16:59:00 +0200 Subject: [PATCH] Add protoc to Actions --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9e414c44..50f26500 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,6 +11,8 @@ jobs: name: Check code formatting runs-on: ubuntu-latest steps: + - name: Install protoc + run: sudo apt install -y protobuf-compiler - uses: actions/checkout@v3 - uses: actions-rs/cargo@v1 name: cargo fmt @@ -27,6 +29,8 @@ jobs: name: Build and test runs-on: ubuntu-latest steps: + - name: Install protoc + run: sudo apt install -y protobuf-compiler - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: