Skip to content

docs: fix typo

docs: fix typo #4

Workflow file for this run

name: CI
on:
workflow_call:
push:
branches:
- main
pull_request:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- uses: golangci/golangci-lint-action@v6
with:
version: v1.64
skip-cache: true
- name: test
run: go test ./... -v -race -coverprofile=coverage.txt -covermode=atomic
- name: Send coverage report
uses: codecov/codecov-action@v4
with:
file: coverage.txt