slabmap 0.2.1

HashMap-like collection that automatically determines the key.
Documentation
name: CI

on:
  push:
  pull_request:
  schedule: [cron: "20 5 * * *"]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - name: Rustup update stable
        run: rustup update stable
      - name: Show cargo version
        run: cargo --version
      - name: Build
        run: cargo build --verbose
      - name: Build tests
        run: cargo test --verbose --no-run
      - name: Run tests
        run: cargo test --verbose
      - name: Clippy
        run: cargo clippy --all-features --tests --lib -- -W clippy::all
      - name: Rustup toolchain install nightly
        run: rustup toolchain install nightly
      - name: Set minimal versions
        run: cargo +nightly update -Z direct-minimal-versions
      - name: Build tests (minimal versions)
        run: cargo test --verbose --no-run
      - name: Run tests (minimal versions)
        run: cargo test --verbose