Skip to content

Bump github.com/google/go-cmp from 0.6.0 to 0.7.0 #71

Bump github.com/google/go-cmp from 0.6.0 to 0.7.0

Bump github.com/google/go-cmp from 0.6.0 to 0.7.0 #71

Workflow file for this run

name: Go Build, Vet, Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build_vet_test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.21', '>=1.21 <2']
steps:
- uses: actions/checkout@v4
- name: Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test -v ./...