Skip to content

Update README.md

Update README.md #13

Workflow file for this run

name: Test
on:
push:
workflow_call:
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Run unit tests
run: go test ./...