interner 0.2.1

A string, path, and buffer internment crate with no dependencies.
Documentation
name: Tests

on: [push]

jobs:
  test:
    runs-on: ubuntu-latest
    timeout-minutes: 30
    steps:
      - uses: actions/checkout@v2

      - name: Install Rust
        uses: hecrj/setup-rust-action@v1

      - name: Run clippy
        run: |
          cargo clippy

      - name: Run unit tests with all features
        run: |
          cargo test --all-features --all-targets