Skip to content

Commit

Permalink
[Rust]: Implement Private and Public keys (#3107)
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshiotomakan committed Oct 6, 2023
1 parent 5d0063c commit a565082
Show file tree
Hide file tree
Showing 55 changed files with 3,131 additions and 623 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/linux-ci-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
run: |
tools/install-rust-dependencies dev
- name: Install emsdk
run: tools/install-wasm-dependencies

- name: Check code formatting
run: |
cargo fmt --check
Expand All @@ -55,6 +58,14 @@ jobs:
cargo llvm-cov nextest --profile ci --no-fail-fast --lcov --output-path coverage.info
working-directory: rust

- name: Run tests in WASM
run: |
source ../emsdk/emsdk_env.sh
cargo test --target wasm32-unknown-emscripten --release
env:
CARGO_TARGET_WASM32_UNKNOWN_EMSCRIPTEN_RUNNER: node
working-directory: rust

- name: Rust Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
Expand Down
Loading

0 comments on commit a565082

Please sign in to comment.