Add examples and some docs for RPC of the node and wallet #10105
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: Permutation testing | |
on: | |
push: | |
branches: | |
- "**" # target all branches | |
pull_request: | |
branches: | |
- master | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: --cfg=loom | |
RUST_LOG: debug | |
RUST_BACKTRACE: full | |
jobs: | |
test_loom: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install rust | |
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Run permutation tests | |
run: cargo test --tests --release -p storage -p chainstate-storage -p storage-lmdb -p storage-inmemory |