Skip to content

Update README.md

Update README.md #34

Workflow file for this run

name: Test
on:
- push
- pull_request
- workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: vet
run: go vet ./...
- name: Test
run: go test ./... -timeout 30s