Skip to content

Fix possible ip spoofing while searching for upnp gateway #16

Fix possible ip spoofing while searching for upnp gateway

Fix possible ip spoofing while searching for upnp gateway #16

Workflow file for this run

name: Test & Lint
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo test
shell: bash
- run: cargo test --features aio
shell: bash
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup component add clippy
- run: cargo clippy --all-features --all-targets