Skip to content

fix: IPv4 to string on 32-bit #19

fix: IPv4 to string on 32-bit

fix: IPv4 to string on 32-bit #19

Workflow file for this run

name: test
on:
pull_request:
push:
jobs:
test:
name: go test
runs-on: ubuntu-latest
strategy:
matrix:
arch: ["amd64", "386", "arm", "arm64", "mips"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- run: GOARCH=${{ matrix.arch }} go test ./...
lint:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- uses: golangci/golangci-lint-action@v6
with:
version: latest