Skip to content

Commit

Permalink
fix generate diff check (#943)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 authored Nov 15, 2024
1 parent 65bdfbc commit ad84e37
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,12 @@ jobs:
- name: Ensure "make gomodtidy" has been run
run: |
make gomodtidy
git diff --minimal --exit-code
git add --all
git diff --minimal --cached --exit-code
- name: Ensure "make generate" has been run
run: |
make rm-mocked
make rm-builders
make generate
git diff --stat --exit-code
git add --all
git diff --stat --cached --exit-code

0 comments on commit ad84e37

Please sign in to comment.