trustblock-cli 0.9.1

human-friendly console utility that helps to interact with Trustblock from command line.
Documentation
name: Push
on:
    push:
jobs:
    unit-test:
        name: Unit Test
        runs-on: ubuntu-latest
        steps:
            - name: Checkout source code
              uses: actions/checkout@v3
            - name: Set up the Rust toolchain
              uses: actions-rs/toolchain@v1
              with:
                  toolchain: stable
                  default: true
                  override: true
                  profile: minimal
            - name: Install cargo-make
              uses: davidB/rust-cargo-make@v1
              with:
                  version: "latest"
            - name: Unit test with code coverage analysis
              run: cargo make test-coverage-ci
            - name: Upload test coverage report to Codecov
              uses: codecov/codecov-action@v3
              with:
                  # We specify the token below to mitigate the impact of the bug mentioned here:
                  # https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954
                  token: ${{ secrets.CODECOV_TOKEN }}
                  fail_ci_if_error: true
                  files: lcov.info