Skip to content

fix: small tweak to readme #45

fix: small tweak to readme

fix: small tweak to readme #45

Workflow file for this run

name: Go
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build-and-unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.25"
- name: Build
run: make build
- name: Test
run: make test