Skip to content

Close notifiers after successfully dialing to prevent deadlock on signals that won't be received #36

Close notifiers after successfully dialing to prevent deadlock on signals that won't be received

Close notifiers after successfully dialing to prevent deadlock on signals that won't be received #36

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.25
uses: actions/setup-go@v6
with:
go-version: 1.25
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: |
mkdir -p $GOPATH/bin
export PATH=$PATH:$GOPATH/bin
- name: Vet
run: go vet ./...
- name: Staticcheck
run: |
go get honnef.co/go/tools/cmd/staticcheck
GOBIN=$PWD/bin go install honnef.co/go/tools/cmd/staticcheck
./bin/staticcheck ./...
- name: Build
run: go build -o go-nethernet_exe -v .