Skip to content

Sleep a bit more to let any deferred initialization to complete. #22

Sleep a bit more to let any deferred initialization to complete.

Sleep a bit more to let any deferred initialization to complete. #22

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