Skip to content

Call WaitGroup.Done() once only when PVB changes to fianl status the first time to avoid panic #10852

Call WaitGroup.Done() once only when PVB changes to fianl status the first time to avoid panic

Call WaitGroup.Done() once only when PVB changes to fianl status the first time to avoid panic #10852

Workflow file for this run

name: Pull Request CI Check
on: [pull_request]
jobs:
build:
name: Run CI
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Make ci
run: make ci
- name: Upload test coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out
verbose: true
fail_ci_if_error: true