Skip to content

fix(registry): fix a data-race in StartRegistryServer() BE-10419 #594

fix(registry): fix a data-race in StartRegistryServer() BE-10419

fix(registry): fix a data-race in StartRegistryServer() BE-10419 #594

Workflow file for this run

name: Test
on: push
env:
GO_VERSION: 1.22.5
jobs:
test:
strategy:
matrix:
config:
- { platform: linux, arch: amd64 }
- { platform: linux, arch: arm64 }
- { platform: windows, arch: amd64, version: 1809 }
- { platform: windows, arch: amd64, version: ltsc2022 }
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Run tests
run: make test
- name: Upload coverage to Codecov
if: ${{ matrix.config.platform == 'linux' && matrix.config.arch == 'amd64' }}
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}