From 317226cf543dfa45c5e986e369f72f822d5298df Mon Sep 17 00:00:00 2001 From: Evan <0xIchigo@protonmail.com> Date: Fri, 3 May 2024 14:16:13 -0400 Subject: [PATCH] Add Protobuf Compiler Installation to Workflow --- .github/workflows/rust.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index df170a5..6501de5 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -24,8 +24,12 @@ jobs: override: true components: clippy + - name: Install Protobuf Compiler + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler + - name: Check with Clippy run: cargo clippy -- -D warnings + - name: Build run: cargo build --verbose