header-vec 0.1.3

Vector with user-specified header, length, capacity, and array elements all stored on the heap together
Documentation
on: [push, pull_request]

name: unit tests

jobs:
  test:
    name: tests
    runs-on: ubuntu-latest
    steps:
      - name: Checkout sources
        uses: actions/checkout@v2

      - name: Install nightly toolchain
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: nightly
          override: true

      - name: Run cargo test
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --all-features