tiny-fn 0.1.9

Type erased closures on stack
Documentation
name: badge

on:
  push:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Install stable toolchain
      uses: actions-rs/toolchain@v1
      with:
        profile: minimal
        toolchain: stable
    - name: Run cargo test
      uses: actions-rs/cargo@v1
      with:
        command: test
        args: --all --all-features
  miri:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Install nightly toolchain
      uses: actions-rs/toolchain@v1
      with:
        profile: minimal
        toolchain: nightly
        components: miri
    - name: Run cargo test
      uses: actions-rs/cargo@v1
      with:
        command: test
        args: --all --all-features