Skip to content

Update README.md

Update README.md #17

Workflow file for this run

name: run-tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22.6"
- name: Install dependencies
run: go get .
- name: Test with the Go CLI
run: go test