Skip to content

chore: sync fork with upstream #180

chore: sync fork with upstream

chore: sync fork with upstream #180

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.2"
- name: Build
run: go build -v ./...
- name: Test
run: go test -cover -race ./...
- name: Install dependencies
run: sudo apt-get install libpcap-dev
- name: Test Examples
run: cd example && go test -cover -race ./...