Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented callstack capture task #34

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,27 @@ jobs:
profile: minimal
override: true

- name: Install Protoc
uses: arduino/setup-protoc@v2

- name: Environment
run: |
cargo --version
rustc --version
protoc --version

- name: Build
run: cargo build
run: |
cargo build
cargo build --manifest-path ./test/rust_grpc/Cargo.toml

- name: Tests
shell: bash
run: |
cargo test
cd test
./test_script.sh

cargo test --manifest-path ./rust_grpc/Cargo.toml
./test_script.sh

style:
name: Fmt & Clippy
Expand All @@ -58,14 +65,22 @@ jobs:
profile: minimal
override: true
components: rustfmt, clippy

- name: Install Protoc
uses: arduino/setup-protoc@v2

- name: Environment
run: |
cargo --version
cargo fmt -- --version
cargo clippy -- --version
protoc --version

- name: Run rustfmt
run: |
cargo fmt --all -- --check
cargo fmt --all --manifest-path ./test/rust_grpc/Cargo.toml -- --check
- name: Run clippy
run: |
cargo clippy --all -- -D warnings
cargo clippy --all --manifest-path ./test/rust_grpc/Cargo.toml -- -D warnings
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.

Loading
Loading