allocator-api2 0.2.16

Mirror of Rust's allocator API
Documentation
name: Check multiple platforms

on:
  pull_request:
    types: [ opened, edited ]

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