Skip to content

ipv6 support

ipv6 support #11

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
include:
- os: ubuntu-latest
goos: linux
goarch: amd64
- os: macos-latest
goos: darwin
goarch: arm64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
env:
CGO_ENABLED: 0
run: |
go build -o bin/localproxy ./cmd/localproxy
go build -o bin/localproxyd ./cmd/localproxyd
- name: Test
env:
CGO_ENABLED: 0
run: go test -v ./...