Skip to content

fix(cli): Client init: don't specify publicKey #324

fix(cli): Client init: don't specify publicKey

fix(cli): Client init: don't specify publicKey #324

Workflow file for this run

name: rust
on:
push:
branches: [main]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run cargo clippy
run: cargo clippy -- -D warnings -D clippy::pedantic