Add more transparency into some EC structures. #1158
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Persistent store tests | |
on: | |
push: | |
paths: | |
- 'libraries/peristent_store/**' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
persistent_store_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
run: rustup show | |
- name: Unit testing of Persistent store library (release mode) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --manifest-path libraries/persistent_store/Cargo.toml --release --features=std | |
- name: Unit testing of Persistent store library (debug mode) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --manifest-path libraries/persistent_store/Cargo.toml --features=std |