Skip to content

Reworked UDP listen with select+coroutine for (future) SIGINT and SIG… #180

Reworked UDP listen with select+coroutine for (future) SIGINT and SIG…

Reworked UDP listen with select+coroutine for (future) SIGINT and SIG… #180

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ^1.20
id: go
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build
run: make build test vet lint