Skip to content

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

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

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

Workflow file for this run

name: build and test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.16
- name: Build
run: go build -v ./...
- name: Test & generate coverage report
run: go test -v ./... -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage report
uses: codecov/codecov-action@v4
with:
file: ./coverage.txt