Skip to content

build(deps): bump golang.org/x/net from 0.19.0 to 0.23.0 in the go_modules group across 1 directory #105

build(deps): bump golang.org/x/net from 0.19.0 to 0.23.0 in the go_modules group across 1 directory

build(deps): bump golang.org/x/net from 0.19.0 to 0.23.0 in the go_modules group across 1 directory #105

Workflow file for this run

name: Build
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04,
macos-11, macos-12,
windows-2019, windows-2022]
fail-fast: false
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: "^1.20"
- name: Checkout repository
uses: actions/checkout@v3
- name: Build without cgo
run: make
env:
CGO_ENABLED: 0
- name: Install cgo dependencies (Linux)
run: sudo apt-get -qy install libpcap-dev
if: ${{ runner.os == 'Linux' }}
- name: Build with cgo
run: make
env:
CGO_ENABLED: 1