Skip to content

Add CI workflow for automated testing and update README with examples #1

Add CI workflow for automated testing and update README with examples

Add CI workflow for automated testing and update README with examples #1

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.24'
- run: go test ./...