Skip to content

fix(buffer): incorrect short-circuiting in buffer logic (#253) #74

fix(buffer): incorrect short-circuiting in buffer logic (#253)

fix(buffer): incorrect short-circuiting in buffer logic (#253) #74

Workflow file for this run

name: Main
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
permissions: {}
jobs:
main:
name: Main Process
runs-on: ubuntu-latest
env:
GO_VERSION: stable
GOLANGCI_LINT_VERSION: v2.12
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: Check and get dependencies
run: |
go mod tidy --diff
- name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }}
uses: golangci/golangci-lint-action@v9
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
install-only: true
- name: Make
run: make