Skip to content

Commit

Permalink
fix: install protobuf-compiler in gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
ngutech21 committed Nov 27, 2023
1 parent c47445a commit 71873d0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Install protobuf-compiler
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Build
run: cargo build --verbose
- name: Run tests
Expand All @@ -26,6 +28,8 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install protobuf-compiler
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Install stable
uses: dtolnay/rust-toolchain@stable
with:
Expand Down

0 comments on commit 71873d0

Please sign in to comment.