Skip to content

Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 #445

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

Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 #445

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- "1.21"
arch:
- amd64
- "386"
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- run: |
go test -coverprofile="coverage.txt" -v ./...
env:
GOARCH: ${{ matrix.arch }}
- name: upload coverage
uses: codecov/codecov-action@v3
with:
file: ./coverage.txt
flags: ${{ matrix.go }}