Skip to content

fix: use reflect.DeepEqual to check equality of incomparable structs … #32

fix: use reflect.DeepEqual to check equality of incomparable structs …

fix: use reflect.DeepEqual to check equality of incomparable structs … #32

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
test-build:
name: Test & Build
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
id: go
- name: checkout
uses: actions/checkout@v2
- name: test
run: |
go mod tidy -v
go test -race ./...
- name: build
run: go build ./...