Skip to content

Update readme.md

Update readme.md #14

Workflow file for this run

name: Go CI
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: stable
- run: go mod tidy
- run: gofmt -l .
- run: go test ./...