Skip to content

build(deps): bump github.com/google/go-cmp from 0.5.9 to 0.6.0 #43

build(deps): bump github.com/google/go-cmp from 0.5.9 to 0.6.0

build(deps): bump github.com/google/go-cmp from 0.5.9 to 0.6.0 #43

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
strategy:
fail-fast: false
matrix:
go-version: ["1.19","1.20"]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Run tests
run: go test -race ./...