Add examples and some docs for RPC of the node and wallet #8675
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
on: | |
push: | |
branches: | |
- "**" # target all branches | |
pull_request: | |
branches: | |
- master | |
name: Static code checks | |
jobs: | |
static_checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt-get install -yqq --no-install-recommends build-essential libgtk-3-dev python3 python3-toml | |
- uses: actions/checkout@v1 | |
- name: Install rust | |
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
- name: Install rust clippy | |
run: rustup component add clippy | |
- name: Install cargo-deny | |
run: cargo install cargo-deny | |
- name: Run checks | |
run: ./do_checks.sh |