microstack 0.0.7

The simplest and the fastest implementation of a fixed-size stack on stack
Documentation
name: cargo
on:
  push:
  pull_request:
concurrency:
  group: ${{ github.ref }}
  cancel-in-progress: true
jobs:
  build:
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-java@v3
        with:
          distribution: 'temurin'
          java-version: 17
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - run: cargo --color=never test --all-features -vv -- --nocapture
      - run: cargo --color=never test --release --all-features -vv -- --nocapture
      - run: cargo --color=never fmt --check
      - run: cargo --color=never doc --no-deps
      - run: cargo --color=never clippy -- --no-deps