html-filter 0.2.3

Parse HTML into a typed tree, then search for tags, attributes, classes, filter out comments or find and extract the exact data you want with a short builder pattern - zero dependencies, zero overhead
Documentation
name: Tests

on:
  push:
    paths:
      - '**/*.rs'
      - 'README.md'
      - '.github/workflows/tests.yml'
  pull_request:
    paths:
      - '**/*.rs'
      - 'README.md'
      - '.github/workflows/tests.yml'

env:
    CARGO_TERM_COLOR: always

jobs:
    test:
        runs-on: ubuntu-latest
        strategy:
          matrix:
            rust: [stable, nightly]

        steps:
            - name: Checkout repository
              uses: actions/checkout@v4

            - name: Install Rust
              uses: actions-rs/toolchain@v1
              with:
                toolchain: ${{ matrix.rust }}
                override: true

            - name: Run tests
              run: cargo test