Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] Validate that generated mocks are up to date #5568

Merged
merged 2 commits into from
Jun 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci-protogen-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Protogen Validation
name: Generated Files Validation

on:
push:
Expand All @@ -16,7 +16,7 @@ permissions: # added using https://github.com/step-security/secure-workflows
contents: read

jobs:
protogen:
generated-files-check:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
Expand All @@ -37,3 +37,6 @@ jobs:

- name: Verify Thrift types are up to date
run: make thrift && git diff --name-status --exit-code

- name: Verify Mockery types are up to date
run: make generate-mocks && git diff --name-status --exit-code
Loading