Fix data race condition, concurrent writes to the err variable, causes Undefined Behavior #13733
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Builder - Integration tests | |
on: | |
# on changes to the main branch touching the builder | |
push: | |
branches: [main] | |
# on PRs touching the builder | |
pull_request: | |
branches: [main] | |
# once a day at 6:17 AM UTC | |
schedule: | |
- cron: "17 6 * * *" | |
# manual execution | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
integration-test: | |
name: Integration test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: Setup Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version: ~1.22.7 | |
- name: Test | |
run: make builder-integration-test |