Skip to content

build(deps): bump actions/checkout from 6.0.3 to 7.0.0 #336

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

build(deps): bump actions/checkout from 6.0.3 to 7.0.0 #336

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@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Create a network namespace for unprivileged tests
run: sudo ip netns add unpriv0
- name: Run tests
run: go test -v -race -tags gofuzz ./...