Skip to content

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

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

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

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: fmt
run: diff -u <(echo -n) <(gofmt -s -d .)
- name: vet
run: go vet ./...
- name: staticcheck
run: go run honnef.co/go/tools/cmd/staticcheck@latest ./...
- name: tidy
run: go mod tidy -diff
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: test
run: go test -covermode atomic -coverprofile=covprofile ./...
- name: goveralls
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: go run github.com/mattn/goveralls@latest -coverprofile=covprofile -service=github