Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.25.1 to 2.25.2 (#69) #132

Bump github.com/onsi/ginkgo/v2 from 2.25.1 to 2.25.2 (#69)

Bump github.com/onsi/ginkgo/v2 from 2.25.1 to 2.25.2 (#69) #132

Workflow file for this run

name: Mock Checker
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
generated_code:
name: generated_code
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
submodules: recursive
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Generate code
run: go generate ./...
- name: Print diff
run: git --no-pager diff
- name: Fail if diff exists
run: git --no-pager diff --quiet