Skip to content

Commit

Permalink
support for libpcap
Browse files Browse the repository at this point in the history
  • Loading branch information
Don Johnson committed Dec 27, 2024
1 parent 42f1577 commit 762224e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
with:
go-version: "1.23.1"

- name: Install dependencies (libpcap-dev)
run: |
sudo apt-get update
sudo apt-get install -y libpcap-dev
- name: Cache Go modules
uses: actions/cache@v3
with:
Expand All @@ -33,6 +38,6 @@ jobs:
- name: Build
run: go build ./...

# Uncomment the next step if you want to run tests, too.
# Uncomment for tests if desired:
# - name: Test
# run: go test ./... -v

0 comments on commit 762224e

Please sign in to comment.