lru-mem 0.3.0

An LRU cache implementation bounded by memory.
Documentation
name: Rust

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always
  RUSTFLAGS: -D warnings
  RUSTDOCFLAGS: -D warnings

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Version
      run: |

        rustup --version
        cargo --version
        cargo clippy --version
    - name: Clippy
      run: |

        rustup component add clippy
        cargo clippy --verbose
    - name: Build
      run: cargo build --verbose
    - name: Tests
      run: cargo test --verbose
    - name: Benches
      run: cargo bench --no-run --verbose
    - name: Documentation
      run: cargo doc --verbose