Skip to content

fix: prevent dropped-count rotation race at window rollover (#59) #223

fix: prevent dropped-count rotation race at window rollover (#59)

fix: prevent dropped-count rotation race at window rollover (#59) #223

Workflow file for this run

name: Tests
on:
push:
tags:
branches:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- '1.22'
- '1.23'
- '1.24'
- '1.25'
- '1.26'
- '1.x'
steps:
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version: ${{ matrix.go }}
stable: false
- name: Build
run: make build
- name: Test
run: make test
- name: Fuzz
if: matrix.go == '1.22'
run: make fuzz
- name: Coverage
run: make coverage
- name: Codecov
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./cover.out
flags: unittests
verbose: true
if: matrix.go == '1.22'