Skip to content

build(deps): bump actions/checkout from 7.0.0 to 7.0.1 #355

build(deps): bump actions/checkout from 7.0.0 to 7.0.1

build(deps): bump actions/checkout from 7.0.0 to 7.0.1 #355

Workflow file for this run

name: Linux Test
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
strategy:
matrix:
go-version:
- "1.25"
- "1.26"
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Create a network namespace for unprivileged tests
run: sudo ip netns add unpriv0
- name: Run tests
run: go test -v -race -tags gofuzz ./...