Skip to content

Commit

Permalink
Rust GRPC Test server with tonic
Browse files Browse the repository at this point in the history
  • Loading branch information
Fluxie committed Dec 17, 2023
1 parent c9e0030 commit ad8f5d1
Show file tree
Hide file tree
Showing 16 changed files with 2,113 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,16 @@ jobs:
protoc --version
- name: Build
run: cargo build
run: |
cargo build
cargo build --manifest-path ./test/rust_grpc/Cargo.toml
- name: Tests
shell: bash
run: |
cd test
./test_script.sh
cargo test --manifest-path ./rust_grpc/Cargo.toml
./test_script.sh
style:
name: Fmt & Clippy
Expand Down
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/proxide.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions test/rust_grpc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit ad8f5d1

Please sign in to comment.