Skip to content

Update arp-fingerprint with recent Windows and FreeBSD patterns #300

Update arp-fingerprint with recent Windows and FreeBSD patterns

Update arp-fingerprint with recent Windows and FreeBSD patterns #300

Workflow file for this run

# Coveralls code coverage test for arp-scan using github actions on Ubuntu runner.
name: coverage
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install libpcap and lcov
run: |
sudo apt-get update -qq
sudo apt-get install -qq libpcap0.8-dev libcap-dev lcov
- name: autoreconf
run: autoreconf --install
- name: configure with gcov
run: ./configure --enable-gcov
- name: make
run: make
- name: make check
run: make check
- name: localnet-run
run: |
sudo make install
arp-scan -vv --localnet --limit=10
- name: create lcov.info
run: lcov --directory . --capture --output-file lcov.info
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info