Skip to content
This repository was archived by the owner on Jun 10, 2026. It is now read-only.

One side buffering

One side buffering #4

Workflow file for this run

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