Skip to content

Improve README.md

Improve README.md #10

Workflow file for this run

name: Default workflow
on:
push
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -cover -v -race ./...