Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
ci: install proto before build
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrohba1 committed Jan 22, 2024
1 parent f823ac8 commit d6b0228
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d6b0228

Please sign in to comment.