Skip to content

update README.md

update README.md #10

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: run
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup
uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
- name: test
run: go test -cover -coverprofile=coverage.out ./... -v