Skip to content

feat: add address flags to both client and server #3

feat: add address flags to both client and server

feat: add address flags to both client and server #3

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24.2"
- run: go mod download -x
- run: go build -v ./...
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24.2"
- run: go mod download -x
- run: go test -v -race -shuffle=on ./...