Skip to content

reduce bucket tail latency with 2 map rotation #132

reduce bucket tail latency with 2 map rotation

reduce bucket tail latency with 2 map rotation #132

Workflow file for this run

name: main
on:
- push
- pull_request
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@0caeaed6fd66a828038c2da3c0f662a42862658f # v1.1.3
with:
go-version: 1.24
id: go
- name: Code checkout
uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 # v2.0.0
with:
persist-credentials: false
- name: Test
run: |
go test -v ./... -coverprofile=coverage.txt -covermode=atomic
go test -v ./... -race
- name: Build
run: |
GOOS=linux go build
GOOS=darwin go build
GOOS=freebsd go build
GOOS=windows go build
GOARCH=386 go build
- name: Publish coverage
uses: codecov/codecov-action@e34ee485244a5b5e6e4e1b96daa4a15c9073e4fc # v1.0.6
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.txt