Skip to content

Update README.md

Update README.md #45

Workflow file for this run

name: test
on: [push]
permissions: read-all
jobs:
build:
name: test
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: code
uses: actions/checkout@v4
- name: go
uses: actions/setup-go@v5
with:
go-version: ^1.26
- name: test
run: |
go get -v -t -d ./...
go test -short -coverprofile=coverage.txt ./...
- name: codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}