Skip to content

Wait a bit after shutdown to let goroutines terminate. #17

Wait a bit after shutdown to let goroutines terminate.

Wait a bit after shutdown to let goroutines terminate. #17

Workflow file for this run

name: Go Build & Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21.1
- name: Build
run: make
- name: Test
run: make test