mint 0.5.8

Math interoperability standard types
Documentation
name: check

on: [pull_request, push]

jobs:
  build:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        channel: [stable, nightly]

    steps:
    - uses: actions/checkout@v1
    - uses: actions-rs/cargo@v1

    - name: Select Rust channel
      uses: actions-rs/toolchain@v1
      with:
          toolchain: ${{ matrix.channel }}
          override: true

    - name: Rust Version Info
      run: rustc --version && cargo --version

    - name: Test All
      run: cargo test --all-features