tinyurl-rs 0.2.0

Crate to simplify using tinyurl.com to shorten long urls in async rust.
Documentation
name: ci

on:
  push:
    branches: ["*"]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy, rustfmt

      - uses: leafwing-studios/cargo-cache@v2
        with:
          sweep-cache: true

      - name: Install pq
        run: sudo apt-get update; sudo apt-get install -y --no-install-recommends libpq-dev

      - name: Fmt
        run: cargo fmt --check

      - name: Test
        run: cargo t

      - name: Lint
        run: cargo clippy

      - name: Build
        run: |
          cargo build