Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

chore: update README.md #749

chore: update README.md

chore: update README.md #749

Workflow file for this run

name: tests
on: [pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
env:
GO111MODULE: "on"
GOPROXY: "https://proxy.golang.org"
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic -v ./...
- name: Report test coverage
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true