Skip to content

Commit

Permalink
Add protoc to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Oct 31, 2023
1 parent ecbc261 commit aa8062d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:

env:
CARGO_TERM_COLOR: always
PROTOC_VERSION: 3.23.4
# FIXME: There are some warnings depending on certain feature flags that
# we need to fix before we can enable this.
# RUSTFLAGS: "-D warnings"

jobs:
checks:
Expand Down Expand Up @@ -104,6 +108,11 @@ jobs:
- name: Install deps
run: sudo apt update && sudo apt install -y libclang-dev

- name: Install protoc
uses: taiki-e/install-action@v2
with:
tool: protoc@${{ env.PROTOC_VERSION }}

- uses: actions/checkout@v3

- name: Set up cargo cache
Expand Down

0 comments on commit aa8062d

Please sign in to comment.