Skip to content

add sanity test of ipv6 and ipv4 socket #11

add sanity test of ipv6 and ipv4 socket

add sanity test of ipv6 and ipv4 socket #11

Workflow file for this run

name: Go Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24.x' # Set to your Go version
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -v ./...