fn-error-context 0.2.1

An attribute macro to add context to errors from a function.
Documentation
name: CI
on:
  push:
    branches:
    - master
  pull_request:
    branches:
    - master
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        rust_version: [stable]
    steps:
    - uses: actions/checkout@v1
    - name: Setup Rust toolchain
      run: rustup default ${{ matrix.rust_version }}
    - name: Build
      run: cargo build --all --verbose
    - name: Run tests
      run: cargo test --all --verbose
    - name: Rustfmt and Clippy
      run: |

        cargo fmt -- --check
        cargo clippy