allocation-counter 0.8.1

Count the number of memory allocation of some code.
Documentation
name: CI
on: push
jobs:
  test:
    strategy:
      matrix:
        os: [ubuntu, macos, windows]
    runs-on: ${{ matrix.os }}-latest
    steps:
    - uses: actions/checkout@v4
    - uses: dtolnay/rust-toolchain@stable
    - run: make check

  test-32-bits:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - uses: dtolnay/rust-toolchain@stable
      with:
        targets: i686-unknown-linux-musl
    - run: cargo test --target i686-unknown-linux-musl