allow patch on pvcs #215
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify code generation integrity | |
on: pull_request | |
jobs: | |
verify-operator-sdk: | |
name: Verify Code Generation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.22 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.22 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Generate manifests | |
run: make generate | |
- name: Test diff | |
run: | | |
git diff | cat | |
git status --porcelain=v1 | |
test $(git status --porcelain=v1 | wc -l) -eq 0 |