Skip to content

improve buffer pool usage (#54) #27

improve buffer pool usage (#54)

improve buffer pool usage (#54) #27

Workflow file for this run

name: Go

Check failure on line 1 in .github/workflows/go.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/go.yml

Invalid workflow file

(Line: 44, Col: 21): Unexpected value '1.24.0'
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
name: Lint ${{ matrix.go-version }}
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.24.0]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: go vet
run: go vet ./...
- name: go fmt
run: diff <(gofmt -d .) <(printf "")
- name: golangci-lint
run: |
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin
$(go env GOPATH)/bin/golangci-lint run --config ./.golangci.yml
test:
name: Testing Go ${{ matrix.go-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: 1.24.0
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Set up Go ${{ matrix.go-version }} on ${{ matrix.os }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test on ${{ matrix.os }}
env:
GO111MODULE: on
run: |
go test ./...
- name: Test on race ${{ matrix.os }}
env:
GO111MODULE: on
run: |
go test -race ./...