custom_error 1.9.2

Define custom errors without boilerplate using the custom_error! macro.
Documentation
name: Rust

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        rust: [1.36.0, stable, beta]
    steps:
    - uses: actions/checkout@v2
    
    - uses: actions-rs/toolchain@v1
      with:
        toolchain: ${{ matrix.rust }}
        default: true
        override: true
    
    - name: test
      uses: actions-rs/cargo@v1
      with:
        command: test
        
    - name: test nostd
      uses: actions-rs/cargo@v1
      with:
        command: test
        args: --no-default-features