Skip to content

Update README.md

Update README.md #6

Workflow file for this run

---
name: ci
on:
- push
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- run: go test -v ./... -covermode=atomic -coverprofile=coverage.out
- uses: codecov/codecov-action@v4
with:
files: coverage.out