Skip to content

Commit a08baaa

Browse files
authored
@peter/update version (#47)
* add indexer
1 parent 166934f commit a08baaa

File tree

32 files changed

+579
-232
lines changed

32 files changed

+579
-232
lines changed

.github/actions/setup-rust/action.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,18 @@ name: Setup Rust (cache & toolchain)
22
runs:
33
using: composite
44
steps:
5+
- name: Install protoc
6+
shell: bash
7+
run: |
8+
sudo apt-get update
9+
sudo apt-get install -y protobuf-compiler
10+
protoc --version
11+
512
- name: Install toolchain 1.78.0
613
uses: actions-rs/toolchain@v1
714
with:
815
profile: minimal
916
toolchain: 1.78.0
1017
components: rustfmt, clippy
1118

12-
- uses: Swatinem/rust-cache@v2
19+
- uses: Swatinem/rust-cache@v2

0 commit comments

Comments
 (0)