Skip to content

check mocks up-to-date #507

check mocks up-to-date

check mocks up-to-date #507

Workflow file for this run

name: check mocks up-to-date
on:
push:
branches:
- dev
pull_request:
merge_group:
permissions:
contents: read
jobs:
make-mocks:
name: make mocks and check for diffs
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: install go1.21
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: run make mocks and check for diffs
run: |
make mocks
if [ ! -z "$(git status --porcelain)" ]; then
printf "Current generated mocks not up to date\n"
git diff
git status
exit 1
fi