com 0.6.0

Utilities for implementing COM Client and Servers
Documentation
name: Build and Test

on:
  pull_request:
  push:
    branches:
      - master

env:
  RUSTFLAGS: -Dwarnings

jobs:
  test:
    strategy:
      matrix:
        rust: [1.46.0, stable]
        os: [windows-latest, ubuntu-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v2
    - uses: actions-rs/toolchain@v1
      with:
        toolchain: ${{ matrix.rust }}
        profile: minimal
        override: true
        components: rustfmt

    - name: tests
      run: cargo test --all

    - name: fmt
      if: matrix.rust == 'stable'
      run: cargo fmt --all -- --check