Skip to content

Commit

Permalink
Install protoc
Browse files Browse the repository at this point in the history
  • Loading branch information
recmo committed Apr 18, 2023
1 parent b860bf6 commit 9f88141
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Install protoc
run:
apt install -y protobuf-compiler
- name: Cache build
uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -69,6 +72,9 @@ jobs:
profile: minimal
toolchain: stable
override: true
- name: Install protoc
run:
apt install -y protobuf-compiler
- name: Cache build
uses: Swatinem/rust-cache@v2
with:
Expand All @@ -93,6 +99,9 @@ jobs:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Install protoc
run:
apt install -y protobuf-compiler
- name: Cache build
uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -128,6 +137,9 @@ jobs:
toolchain: nightly
override: true
components: llvm-tools-preview
- name: Install protoc
run:
apt install -y protobuf-compiler
- name: Cache build
uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -182,6 +194,9 @@ jobs:
profile: minimal
toolchain: nightly
default: true
- name: Install protoc
run:
apt install -y protobuf-compiler
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9f88141

Please sign in to comment.