Install libpcap-dev in CI workflow

Added step to install libpcap-dev before building the project.
This commit is contained in:
Marco Cadetg
2025-09-09 17:14:50 +02:00
committed by GitHub
parent 8a8d11ff8b
commit 45056d41c8

View File

@@ -11,11 +11,11 @@ env:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install libpcap
run: sudo apt-get update && sudo apt-get install -y libpcap-dev
- name: Build
run: cargo build --verbose
- name: Run tests