Skip to content

docs: update README.md #10

docs: update README.md

docs: update README.md #10

Workflow file for this run

name: tests
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: go build -v ./...
- name: Test
run: go test -p 1 -timeout 10s -coverprofile coverage.out -v ./...
- name: Upload coverage to GitHub
uses: actions/upload-artifact@v2
with:
name: coverage
path: ./coverage.out