We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 780efca commit 1a08639Copy full SHA for 1a08639
.github/workflows/rust.yml
@@ -30,11 +30,14 @@ jobs:
30
- name: Check Code Formatting
31
run: cargo fmt --all -- --check
32
33
+ - name: Install protoc for gRPC server
34
+ run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
35
+
36
- name: Run Clippy (Linter)
37
run: cargo clippy --all-targets --all-features -- -D warnings
38
39
- name: Build Project
40
run: cargo build --verbose
41
42
- name: Run Tests
- run: cargo test --verbose
43
+ run: cargo test --verbose -- --test-threads=1
0 commit comments