Skip to content

Feature: Implement FanOut #31

Feature: Implement FanOut

Feature: Implement FanOut #31

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ "1.25.x" ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # for semantic-release later
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test + Coverage + Race
run: go test ./... -v -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
fail_ci_if_error: true
verbose: true