We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9bf557 commit c1a5bceCopy full SHA for c1a5bce
.github/workflows/ci.yml
@@ -55,6 +55,9 @@ jobs:
55
echo "::set-output name=version::$(grep "VERSION = " Makefile | cut -d " " -f 3)"
56
echo "::set-output name=date::$(date -u +"%Y-%m-%dT%H:%M:%SZ")"
57
echo "::set-output name=go_path::$(go env GOPATH)"
58
+ - name: Check if go.mod and go.sum are up to date
59
+ run: |
60
+ go mod tidy && git diff --exit-code -- go.mod go.sum
61
- name: Check if CRDs changed
62
run: |
63
make update-crds && git diff --name-only --exit-code deploy/manifests/crds/*
0 commit comments