Skip to content

docs: add method comments for godoc #7

docs: add method comments for godoc

docs: add method comments for godoc #7

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
go_version: ['1.22']
os: [ubuntu-latest, windows-latest, macos-14]
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go_version }}
check-latest: true
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: "go test -v -race -coverprofile='coverage.out' ./..."
shell: bash
- name: Code coverage
uses: codecov/codecov-action@v4
with:
env_vars: OS,GO
file: ./coverage.out
flags: unittests
fail_ci_if_error: false
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}