Skip to content

using errgroup instead of conc pool #32

using errgroup instead of conc pool

using errgroup instead of conc pool #32

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.26.x'
- name: Lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.10.1
- name: Test
run: go test -race -covermode atomic -coverprofile=coverage.txt -v ./...
- name: Upload Coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}