Skip to content

Update README

Update README #19

Workflow file for this run

name: Build and Test
on: [push]
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '~1.19.0'
- name: Build
run: go build .
- name: Test
run: go test ./...