Skip to content

Explain the use of WaitGroup in the example test #11

Explain the use of WaitGroup in the example test

Explain the use of WaitGroup in the example test #11

Workflow file for this run

name: Unit Test
on: [push]
jobs:
test:
name: Unit Test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.21.x' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: subdir/go.sum
- run: go test ./...