Owner field in response coming empty when searching for fungible-asset using getAssetByOwner #477
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: Check lock file, fmt, clippy | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
- name: set build cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
digital-asset-rpc-infrastructure/target/ | |
key: cargo-${{ hashFiles('**/Cargo.lock') }}-0001 | |
# Cargo.lock | |
- name: Check lock file | |
run: | | |
cargo tree | |
git checkout Cargo.lock | |
cargo tree --frozen | |
# fmt | |
- name: Check fmt | |
run: cargo fmt --all -- --check | |
# clippy | |
- name: Check clippy | |
run: cargo clippy --all-targets --tests -- -Dwarnings |