near-cli-rs 0.26.0

human-friendly console utility that helps to interact with NEAR Protocol from command line.
Documentation
name: Run Tests
on:
  pull_request:
  push:
    branches:
      - main

jobs:
  tests:
    name: Run Tests
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v2
      - name: Install Rust
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          override: true
          profile: minimal
          components: rustfmt
      - name: Install libudev-dev
        run: |
          sudo apt-get update
          sudo apt-get install --assume-yes libudev-dev
      - name: Run Tests
        run: cargo test --all-features -- --nocapture