napmap 0.1.2

Async HashMap that halts requester tasks until the requested data is accessible
Documentation
name: Continues Integration

on:
  pull_request:
    types: [opened, synchronize, reopened]

jobs:
  clippy:
    name: Clippy check
    runs-on: ubuntu-latest
    timeout-minutes: 10
    steps:
      - uses: actions/checkout@v4
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - uses: actions-rs/cargo@v1
        with:
          command: clippy

  test:
    name: Run test
    runs-on: ubuntu-latest
    timeout-minutes: 10
    steps:
      - uses: actions/checkout@v4
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - uses: actions-rs/cargo@v1
        with:
          command: test