Skip to content

docs: add performance section with benchmarks and capacity estimation #7

docs: add performance section with benchmarks and capacity estimation

docs: add performance section with benchmarks and capacity estimation #7

Workflow file for this run

name: Test
on:
push:
tags:
- 'v*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.21', '1.22', '1.23']
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Download dependencies
run: go mod download
- name: Run tests with race detector
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage
uses: codecov/codecov-action@v4
if: matrix.go-version == '1.23'
with:
files: ./coverage.out
fail_ci_if_error: false