Skip to content

CODEOWNERS: add Matthew Cheetham #164

CODEOWNERS: add Matthew Cheetham

CODEOWNERS: add Matthew Cheetham #164

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest, windows-2019 ]
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- name: Build
run: go build ./...
- name: Run Unit Tests
run: go test ./...