mapper 1.1.4

Mapping macro to help to reduce mapping boilerplate
Documentation
name: MapperCI

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
      name: Checkout
    - name: Install minimal nightly
      uses: actions-rs/toolchain@v1
      with:
        override: true
    - name: Build
      uses: actions-rs/cargo@v1  
      with:
        command: build 
        args: --verbose
    - name: Test
      uses: actions-rs/cargo@v1
      with:
        command: test 
        args: --verbose