deep_space 2.32.1

A highly portable, batteries included, transaction generation and key management library for CosmosSDK blockchains
Documentation
name: Rust

on:
  push:
    branches: [ master, pranay_debug ]
  pull_request:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always


jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --all --all-features --verbose

  unit-tests:
    
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Unit Tests
      run: cargo test --all --all-features --verbose 

  clippy:
    
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Clippy
      run: rustup component add clippy && cargo clippy --all --all-targets --all-features -- -D warnings

  rustfmt:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Rustfmt
      run: rustup component add rustfmt && cargo fmt --all -- --check

  audit:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Cargo audit
      run: cargo install cargo-audit && cargo audit