Skip to content

Commit 1a08639

Browse files
committed
Add protoc install step in CI
1 parent 780efca commit 1a08639

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,14 @@ jobs:
3030
- name: Check Code Formatting
3131
run: cargo fmt --all -- --check
3232

33+
- name: Install protoc for gRPC server
34+
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
35+
3336
- name: Run Clippy (Linter)
3437
run: cargo clippy --all-targets --all-features -- -D warnings
3538

3639
- name: Build Project
3740
run: cargo build --verbose
3841

3942
- name: Run Tests
40-
run: cargo test --verbose
43+
run: cargo test --verbose -- --test-threads=1

0 commit comments

Comments
 (0)