From d6b0228fce2fe23e16905401dd5f93dcf1bdd645 Mon Sep 17 00:00:00 2001 From: pedro bufulin Date: Mon, 22 Jan 2024 18:00:11 -0300 Subject: [PATCH] ci: install proto before build --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a96d200..b42adb1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,13 +26,14 @@ jobs: - name: Check code formatting run: cargo fmt -- --check + - name: Install Protoc + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler + - name: Install Clippy run: rustup component add clippy - name: Run Clippy run: cargo clippy - - name: Install Protoc - run: sudo apt-get update && sudo apt-get install -y protobuf-compiler - run: cargo build --verbose - run: cargo test --verbose \ No newline at end of file