postfix-macros 0.1.0

Postfix macros on stable Rust, today
Documentation
name: postfix-macros

on: [push, pull_request]

jobs:
  build:

    strategy:
      matrix:
        os: [macOS-latest, ubuntu-latest]
        toolchain: [stable, beta, 1.42.0]

    runs-on: ${{ matrix.os }}

    steps:
    - uses: actions/checkout@master
    - name: Install Rust
      uses: actions-rs/toolchain@v1
      with:
        toolchain: ${{ matrix.toolchain }}
        override: true
    - name: Run cargo check --all
      env:
        RUSTFLAGS: -D warnings
      run: |
        cargo check --all
    - name: Run the tests
      if: matrix.toolchain != '1.42.0'
      env:
        RUSTFLAGS: -D warnings
      run: |
         cargo test --all
    - name: Run cargo doc
      run: |
        cargo doc --all