pktstrings 1.4.1

Like Unix 'strings' command but packet-aware
Documentation
name: Rust

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build-ubuntu:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: actions/cache@v2
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
          target
        key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

    - name: Install dependencies
      run: sudo apt-get update && sudo apt-get install -y --no-install-recommends libpcap-dev

    - name: Build and test
      run: cargo test --verbose --all-features

  build-macos:
    runs-on: macos-latest
    steps:
    - uses: actions/checkout@v2

    - uses: actions/cache@v2
      with:
        path: |
          ~/.cargo/registry
          ~/.cargo/git
          target
        key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

    - name: Build and test
      run: cargo test --verbose --all-features

#   build-win:
#     runs-on: windows-latest
#     env:
#         RUST_TEST_THREADS: 1
#     steps:
#     - uses: actions/checkout@v2

#     - uses: actions/cache@v2
#       with:
#         path: |
#           ~/.cargo/registry
#           ~/.cargo/git
#           target
#         key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

#     - name: Install dependencies
#       run: |
#               Invoke-WebRequest -UseBasicParsing https://www.winpcap.org/install/bin/WpdPack_4_1_2.zip -OutFile "${Env:TEMP}\wpd.zip"
#               Expand-Archive -LiteralPath "${Env:TEMP}\wpd.zip" -DestinationPath "${Env:TEMP}\wpd"
#               Move-Item -LiteralPath "${Env:TEMP}\wpd\WpdPack\Lib" -Destination lib
#     - name: Build and test
#       run: cargo test --verbose --all-features