Skip to content

Add documentation

Add documentation #4

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.23.x'
- name: Install dependencies
run: go get .
- name: Set up gotestfmt
run: go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
- name: Build
run: go build -v ./...
- name: Unit & Integration Tests
run: go test -v -json -race -coverprofile=cover.out ./... | gotestfmt