multi-index-container 0.1.0

A Rust procedural macro for collections that can be efficiently looked up, mutated, and removed by multiple indexes simultaneously
Documentation
name: Testing
on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]
jobs:
  test:
    runs-on: ubuntu-latest
    steps:                  
      - name: Clone the repo
        uses: actions/checkout@v4
      - name: Cache cargo registry + git + target
        uses: actions/cache@v4
        with:
          path: |
            ~/.cargo/registry
            ~/.cargo/git
            target
          key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
          restore-keys: |
            ${{ runner.os }}-cargo-
      - name: Run cargo build Linux
        run: cargo test