Change benchmark default chunk size to use shareSize (512 bytes) (#261) #95
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
# lint runs golangci-lint | |
name: lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- release/** | |
env: | |
GO_VERSION: '1.20' | |
jobs: | |
golangci-lint: | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 8 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- uses: golangci/[email protected] | |
with: | |
version: v1.52.2 | |
args: --timeout 10m | |
github-token: ${{ secrets.github_token }} |