nom-rfc8288 0.2.2

A nom based parser for RFC 8288
Documentation
name: Test Pipeline
run-name: ${{ github.actor }} is running the test pipeline
on: [push]
jobs:
  cargo-test:
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v3
      - run: cargo build
      - run: cargo test

  cargo-fmt:
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v3
      - run: cargo fmt --all -- --check

  cargo-clippy:
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v3
      - run: cargo clippy -- -D warnings

  cargo-doc:
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v3
      - run: cargo doc