We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23170e2 commit 74813fbCopy full SHA for 74813fb
.github/workflows/rust.yml
@@ -17,6 +17,7 @@ jobs:
17
- name: Checkout Repository
18
uses: actions/checkout@v4
19
20
+
21
- name: Set Up Rust
22
uses: actions-rs/toolchain@v1
23
with:
@@ -30,11 +31,14 @@ jobs:
30
31
- name: Check Code Formatting
32
run: cargo fmt --all -- --check
33
34
+ - name: Install protoc for gRPC server
35
+ run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
36
37
- name: Run Clippy (Linter)
38
run: cargo clippy --all-targets --all-features -- -D warnings
39
40
- name: Build Project
41
run: cargo build --verbose
42
43
- name: Run Tests
- run: cargo test --verbose
44
+ run: cargo test --verbose -- --test-threads=1
0 commit comments