Skip to content

Update README.md

Update README.md #7

Workflow file for this run

name: build
on: [push]
jobs:
build:
strategy:
matrix:
go-version: ['1.19.x', '1.20.x']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: |
go vet
go build -v .
- name: Test
run: |
go test -v -race -covermode=atomic