Skip to content

Fix stream id counter #116

Fix stream id counter

Fix stream id counter #116

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.24
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race -covermode=atomic -coverpkg=./... -coverprofile=coverage.txt ./...
- name: Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}