Skip to content

Commit

Permalink
Verify auto-gen files in workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Dean Roehrich <[email protected]>
  • Loading branch information
roehrich-hpe committed Aug 1, 2024
1 parent 40dcbac commit cef351b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,15 @@ jobs:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}

- name: "Verify auto-generated files"
run: |
make manifests generate generate-go-conversions
if [[ $(git status -s | wc -l) -gt 0 ]]; then \
git status; exit 1; \
fi
- name: "Verify CRD conversions"
run: make verify
run: make verify-conversions

- name: "Lowercase repository name for docker build"
id: lowercase-repository-name
Expand Down

0 comments on commit cef351b

Please sign in to comment.