Skip to content

refactor and testing updates #108

refactor and testing updates

refactor and testing updates #108

Workflow file for this run

name: pull-request
on:
pull_request:
jobs:
test-unix:
strategy:
fail-fast: false
matrix:
platform:
- ubuntu
- macOS
- windows
go:
- 1.21.x
- 1.22.x
name: '${{ matrix.platform }} | ${{ matrix.go }}'
runs-on: ${{ matrix.platform }}-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Test
run: |
go test ./...
go test -race ./...