Skip to content

Update README.md

Update README.md #3

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Go
uses: actions/setup-go@master
with:
go-version: ">=1.20.0"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Refresh Go Report Card
uses: creekorful/goreportcard-action@master