fix(load): prevent busy loop and optimize buffer allocation #1915
Workflow file for this run
This file contains hidden or 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: Go | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup Go | |
| if: matrix.os == 'ubuntu-latest' | |
| uses: actions/setup-go@v6 | |
| with: | |
| cache: false | |
| go-version-file: go.mod | |
| - name: Setup Go | |
| if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest' | |
| uses: actions/setup-go@v6 | |
| with: | |
| cache: true | |
| go-version-file: go.mod | |
| - name: Set git to use LF | |
| # make sure that line endings are not converted on windows | |
| # as gofmt linter will report that they need to be changed | |
| run: git config --global core.autocrlf false | |
| - name: Lint | |
| if: matrix.os == 'ubuntu-latest' | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.5.0 | |
| args: --timeout 10m | |
| skip-cache: false | |
| - name: Vet | |
| if: matrix.os == 'ubuntu-latest' | |
| run: make vet | |
| - name: Build | |
| run: make build | |
| - name: Test | |
| run: make test |