Skip to content

Signal the network server even when it cannot answer #582

Signal the network server even when it cannot answer

Signal the network server even when it cannot answer #582

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
workflow_call:
env:
GOWORK: off
CGO_ENABLED: "0"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# GH-hosted arm64 macos forbidden; tests run on amd64 only.
# Cross-compiled darwin/arm64 binaries are validated in release-binaries.yml.
os: [ubuntu-22.04, macos-13]
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Run unit tests
shell: bash
run: go test -v -cover -timeout 10m ./...