Skip to content

docs: add configuration section to README #8

docs: add configuration section to README

docs: add configuration section to README #8

Workflow file for this run

name: Unit tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: go get ./...
- name: Run unit tests
run: go test ./...