Skip to content

Ver2.4.1 (#32)

Ver2.4.1 (#32) #98

Workflow file for this run

name: "Go check"
on:
push:
branches:
- main
- v2
pull_request:
branches:
- main
- v2
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: sudo apt update && sudo apt install -y libpcap-dev
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Set environment variable for PCAP interface
run: echo "DTAP_TEST_PCAP_IFNAME=eth0" >> $GITHUB_ENV
- name: Test
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
ginkgo run --label-filter='!privileged' ./...