ring-alloc 0.2.0

Specialized allocator for short-living objects
Documentation
name: Check on multiple platforms

on:
  pull_request:
    types: [ opened, edited ]
    paths: 
      - '**.rs'
      - '**/Cargo.toml'

env:
  CARGO_TERM_COLOR: always

jobs:
  check-targets:
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macOS-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v2
    - name: Install nightly toolchain
      uses: actions-rs/toolchain@v1
      with:
        profile: minimal
        toolchain: nightly
    - name: Run cargo check
      uses: actions-rs/cargo@v1
      with:
        toolchain: nightly
        command: check
        args: --all --all-features