Skip to content

Change benchmark default chunk size to use shareSize (512 bytes) (#261) #95

Change benchmark default chunk size to use shareSize (512 bytes) (#261)

Change benchmark default chunk size to use shareSize (512 bytes) (#261) #95

Workflow file for this run

# 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 }}